19 lines
275 B
TypeScript
19 lines
275 B
TypeScript
"use client";
|
|
|
|
|
|
|
|
import CommandCenterPortal from "@/components/dashboard/iotapplication/commandCenter";
|
|
|
|
|
|
|
|
export default function CommandCenterPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<CommandCenterPortal />
|
|
|
|
</div>
|
|
|
|
);
|
|
} |