"use client"; import { Box, Button, DialogActions, DialogContent, Stack } from "@mui/material"; import React 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 LocationFormContent = ({ setOpenLocationDialog, start_lat, start_lng, end_lat, end_lng }) => { return ( <> ); }; export default LocationFormContent;