UNPKG

244 BJavaScriptView Raw
1import { createControlComponent } from '@react-leaflet/core';
2import { Control } from 'leaflet';
3export const AttributionControl = createControlComponent(function createAttributionControl(props) {
4 return new Control.Attribution(props);
5});