19 lines
238 B
TypeScript
19 lines
238 B
TypeScript
"use client"
|
|
|
|
|
|
import ReportPortal from "@/components/dashboard/insight/reports";
|
|
|
|
|
|
|
|
|
|
export default function ReportPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-6 mx-2">
|
|
<ReportPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |