mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
16 lines
338 B
TypeScript
16 lines
338 B
TypeScript
|
|
'use client';
|
||
|
|
import ReportsHeader from './ReportsHeader';
|
||
|
|
import ReportsDataTable from './ReportsDataTable';
|
||
|
|
|
||
|
|
export default function ReportsPage({ teamId }: { teamId: string }) {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<ReportsHeader />
|
||
|
|
<ReportsDataTable teamId={teamId} />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
export const metadata = {
|
||
|
|
title: 'Reports | Umami',
|
||
|
|
};
|