Files
TJWaterFrontend_Refine/src/app/scada-data-cleaning/page.tsx
2025-09-28 15:51:45 +08:00

12 lines
214 B
TypeScript

"use client";
import MapComponent from "@app/OlMap/MapComponent";
export default function Home() {
return (
<div className="relative w-full h-full overflow-hidden">
<MapComponent />
</div>
);
}