Files
KAFM-Project/app/dashboard/insight/report/page.tsx

19 lines
238 B
TypeScript

"use client"
import ReportPortal from "@/components/dashboard/insight/reports";
export default function ReportPage() {
return (
<div className="p-8 mx-3">
<ReportPortal/>
</div>
);
}