({ route }: {
route: [number, number][]
})
| 1 | import { Polyline } from "react-leaflet"; |
| 2 | |
| 3 | export function RoutingControl({ route }: { |
| 4 | route: [number, number][] |
| 5 | }) { |
| 6 | if (!route) return null |
| 7 | |
| 8 | return <Polyline positions={route} color="blue" /> |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected