Files
KAFM-Project/app/dashboard/intelligence/energyBenchmarking/page.tsx

23 lines
294 B
TypeScript

"use client"
import EnergyBenchmarkingPortal from "@/components/dashboard/intelligence/energybenchmarking";
export default function EnergybenchmarkingPage() {
return (
<div className="p-8 mx-3">
<EnergyBenchmarkingPortal/>
</div>
);
}