umami/src/app/(main)/reports/page.tsx

15 lines
337 B
TypeScript
Raw Normal View History

2023-09-29 12:29:22 +00:00
import ReportsHeader from './ReportsHeader';
2023-10-08 01:55:14 +00:00
import ReportsDataTable from './ReportsDataTable';
2023-09-29 12:29:22 +00:00
2024-02-03 01:49:17 +00:00
export default function ({ params: { teamId } }: { params: { teamId: string } }) {
2023-09-29 12:29:22 +00:00
return (
<>
<ReportsHeader />
2024-02-03 01:49:17 +00:00
<ReportsDataTable teamId={teamId} />
2023-09-29 12:29:22 +00:00
</>
);
}
export const metadata = {
2024-02-03 01:49:17 +00:00
title: 'Reports | Umami',
2023-09-29 12:29:22 +00:00
};