7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
'use client';
|
|
import InsightsReport from './InsightsReport';
|
|
|
|
export default function InsightsReportPage() {
|
|
return <InsightsReport />;
|
|
}
|