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