"use client"; import { Box, Button, Chip, Dialog, DialogActions, DialogContent, Divider, FormControl, FormControlLabel, FormLabel, Radio, RadioGroup, Typography, } from "@mui/material"; import dynamic from "next/dynamic"; import MapLoading from "@/core/components/MapLayer/Loading"; import "leaflet-draw/dist/leaflet.draw.css"; import GppMaybeIcon from "@mui/icons-material/GppMaybe"; import PolygonForDesign from "./PolygonForDesign"; const MapLayer = dynamic(() => import("@/core/components/MapLayer"), { loading: () => , ssr: false, }); const MapModifyDialog = ({ mapModifyModal, setMapModifyModal }) => { const handleClose = () => { setMapModifyModal(false); }; return ( نکته: اصلاح ننمودن طرح به منزله تایید طرح میباشد. آیا طرح نیاز به ایجاد راه دسترسی دارد؟ } label="بله" /> } label="خیر" /> ); }; export default MapModifyDialog;