Files
KAFM-Project/app/dashboard/iot-app/commandCenter/page.tsx

19 lines
275 B
TypeScript

"use client";
import CommandCenterPortal from "@/components/dashboard/iotapplication/commandCenter";
export default function CommandCenterPage() {
return (
<div className="p-6 mx-2">
<CommandCenterPortal />
</div>
);
}