mirror of
https://github.com/sstent/aicyclingcoach-go.git
synced 2026-01-26 09:02:18 +00:00
6 lines
223 B
JavaScript
6 lines
223 B
JavaScript
import { createControlComponent } from '@react-leaflet/core';
|
|
import { Control } from 'leaflet';
|
|
export const ZoomControl = createControlComponent(function createZoomControl(props) {
|
|
return new Control.Zoom(props);
|
|
});
|