mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
16 lines
382 B
TypeScript
16 lines
382 B
TypeScript
|
|
import { Metadata } from 'next';
|
||
|
|
import ReportsHeader from 'app/(main)/reports/ReportsHeader';
|
||
|
|
import ReportsDataTable from 'app/(main)/reports/ReportsDataTable';
|
||
|
|
|
||
|
|
export default function ({ params: { teamId } }) {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<ReportsHeader />
|
||
|
|
<ReportsDataTable teamId={teamId} />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'Reports | umami',
|
||
|
|
};
|