| 6 | |
| 7 | // Define interfaces for props and markers |
| 8 | interface Marker { |
| 9 | id: string |
| 10 | title: string |
| 11 | description: string |
| 12 | latitude: number |
| 13 | longitude: number |
| 14 | } |
| 15 | |
| 16 | interface ClientMapProps { |
| 17 | markers: Marker[] |
nothing calls this directly
no outgoing calls
no test coverage detected