Files
turftracker/frontend/node_modules/react-leaflet/lib/AttributionControl.js
2026-04-09 13:19:47 -05:00

6 lines
244 B
JavaScript

import { createControlComponent } from '@react-leaflet/core';
import { Control } from 'leaflet';
export const AttributionControl = createControlComponent(function createAttributionControl(props) {
return new Control.Attribution(props);
});