| 10 | onLocationSelect?: (lng: number, lat: number, name: string) => void; |
| 11 | } |
| 12 | |
| 13 | interface GeocodingResult { |
| 14 | id: string; |
| 15 | place_name: string; |
| 16 | center: [number, number]; |
| 17 | } |
| 18 | |
| 19 | const SearchBar = ({ onSearch, onLocationSelect }: SearchBarProps) => { |
nothing calls this directly
no outgoing calls
no test coverage detected