21 lines
276 B
TypeScript
21 lines
276 B
TypeScript
"use client";
|
|
|
|
|
|
|
|
|
|
import EnergyUtilityPortal from "@/components/dashboard/iotapplication/energyUtility";
|
|
|
|
|
|
|
|
|
|
export default function EnergyUtilityPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-6 mx-2">
|
|
<EnergyUtilityPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |