import { MapContainer, TileLayer, Marker, Popup, Polyline, } from "react-leaflet"; const MapView = ({ startCoords, endCoords, route }) => { return ( {startCoords && ( Пункт отправления )} {endCoords && ( Пункт назначения )} {route.length > 0 && } ); }; export default MapView;