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