Files
TJWaterServer/src/app/(main)/hydraulic-simulation/pipe-flushing/page.tsx

17 lines
459 B
TypeScript

"use client";
import MapComponent from "@app/OlMap/MapComponent";
import MapToolbar from "@app/OlMap/Controls/Toolbar";
import FlushingAnalysisPanel from "@/components/olmap/FlushingAnalysis/FlushingAnalysisPanel";
export default function Home() {
return (
<div className="relative w-full h-full overflow-hidden">
<MapComponent>
<MapToolbar queryType="scheme" />
<FlushingAnalysisPanel />
</MapComponent>
</div>
);
}