import { Marker, Popup } from 'react-leaflet' import { Trashbox } from '../api/trashbox/types' import { iconTrash } from '../utils/markerIcons' type TrashboxMarkersProps = { trashboxes: Trashbox[], selectTrashbox: ({ index, category }: { index: number, category: string }) => void } const TrashboxMarkers = ({ trashboxes, selectTrashbox }: TrashboxMarkersProps) => { return ( <>{trashboxes.map((trashbox, index) => (

{trashbox.Address}

Тип мусора: <> {trashbox.Categories.map((category, j) => selectTrashbox({ index, category })}> {category} {(j < trashbox.Categories.length - 1) ? ', ' : ''} )}

{trashbox.Lat.toFixed(4)}, {trashbox.Lng.toFixed(4)}

))} ) } export default TrashboxMarkers