Files
TJWaterFrontend_Refine/src/app/(main)/network-partition-optimization/page.tsx

16 lines
434 B
TypeScript

"use client";
import MapComponent from "@app/OlMap/MapComponent";
import MapToolbar from "@app/OlMap/Controls/Toolbar";
import ZonePropsPanel from "@components/olmap/ZonePropsPanel";
export default function Home() {
return (
<div className="relative w-full h-full overflow-hidden">
<MapComponent>
{/* <MapToolbar hiddenButtons={["style"]} /> */}
<ZonePropsPanel />
</MapComponent>
</div>
);
}