| 1 | import { useMapEvents } from 'react-leaflet' |
| 2 | |
| 3 | interface MapClickHandlerProps { |
| 4 | onClick: (e: L.LeafletMouseEvent) => void; |
| 5 | } |
| 6 | |
| 7 | export function MapClickHandler({ onClick }: MapClickHandlerProps) { |
| 8 | useMapEvents({ |
nothing calls this directly
no outgoing calls
no test coverage detected