import React from "react" import Style from "./BoxMap.module.css" import BoxFull from "./BoxFull" import { MapContainer, TileLayer } from "react-leaflet" export default function BoxMap({ setMap, startingPosition = { lat: 41.89309, lng: 12.48289 }, startingZoom = 3, button, children, ...props }) { return ( {children}
{button}
) }