11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { InsightsReportPage } from './InsightsReportPage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function () {
|
|
return <InsightsReportPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Insights Report',
|
|
};
|