import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import { ComposableMap, Geographies, Geography, Graticule } from "react-simple-maps"; const geoUrl = "https://raw.githubusercontent.com/deldersveld/topojson/master/continents/europe.json"; const EuropeMapWithGraticule = () => { return ( <> Europe Map With Graticule {({ geographies }) => geographies.map((geo) => ( )) } ); }; export default EuropeMapWithGraticule;