Configure Completed is added
This commit is contained in:
23
app/dashboard/iot-app/alarmRules/page.tsx
Normal file
23
app/dashboard/iot-app/alarmRules/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
|
||||
import AlarmRulesPortal from "@/components/dashboard/iotapplication/alarmsRules";
|
||||
import DeviceFleetPortal from "@/components/dashboard/iotapplication/deviceFleet";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function AlarmRulesPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<AlarmRulesPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
19
app/dashboard/iot-app/commandCenter/page.tsx
Normal file
19
app/dashboard/iot-app/commandCenter/page.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
import CommandCenterPortal from "@/components/dashboard/iotapplication/commandCenter";
|
||||
|
||||
|
||||
|
||||
export default function CommandCenterPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<CommandCenterPortal />
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
22
app/dashboard/iot-app/deviceFleet/page.tsx
Normal file
22
app/dashboard/iot-app/deviceFleet/page.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
|
||||
import DeviceFleetPortal from "@/components/dashboard/iotapplication/deviceFleet";
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
export default function DeviceFleetPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<DeviceFleetPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
21
app/dashboard/iot-app/energyUtility/page.tsx
Normal file
21
app/dashboard/iot-app/energyUtility/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
|
||||
import EnergyUtilityPortal from "@/components/dashboard/iotapplication/energyUtility";
|
||||
|
||||
|
||||
|
||||
|
||||
export default function EnergyUtilityPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<EnergyUtilityPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
20
app/dashboard/iot-app/hvacPlant/page.tsx
Normal file
20
app/dashboard/iot-app/hvacPlant/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"use client";
|
||||
|
||||
|
||||
|
||||
|
||||
import HVACPlantPortal from "@/components/dashboard/iotapplication/hvacPlant";
|
||||
|
||||
|
||||
|
||||
export default function HVACPlantPage() {
|
||||
return (
|
||||
|
||||
|
||||
<div className="p-8 mx-3">
|
||||
<HVACPlantPortal/>
|
||||
|
||||
</div>
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user