15 lines
406 B
TypeScript
15 lines
406 B
TypeScript
"use client";
|
|
|
|
import MapComponent from "@app/OlMap/MapComponent";
|
|
import MapToolbar from "@app/OlMap/Controls/Toolbar";
|
|
import ZonePropsPanel from "@components/olmap/NetworkPartitionOptimization/ZonePropsPanel";
|
|
export default function Home() {
|
|
return (
|
|
<div className="relative w-full h-full overflow-hidden">
|
|
<MapComponent>
|
|
<ZonePropsPanel />
|
|
</MapComponent>
|
|
</div>
|
|
);
|
|
}
|