"use client"; import ExploreIcon from "@mui/icons-material/Explore"; import { Box, Button, Dialog, DialogActions, DialogContent, IconButton } from "@mui/material"; import { useState } from "react"; import dynamic from "next/dynamic"; import MapLoading from "@/core/components/MapLayer/Loading"; import ShowLocationMarker from "@/core/components/ShowLocationMarker"; const MapLayer = dynamic(() => import("@/core/components/MapLayer"), { loading: () => , ssr: false, }); const ShowLocation = ({ lat, lng }) => { const [openShowLocationModal, setOpenShowLocationModal] = useState(false); const handleOpenShowLocationModal = () => { setOpenShowLocationModal(true); }; const handleCloseShowLocationModal = () => { setOpenShowLocationModal(false); }; return ( ); }; export default ShowLocation;