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

21 lines
427 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
'use client';
2024-03-14 09:45:00 +00:00
import { Metadata } from 'next';
2024-02-06 07:59:33 +00:00
import ReportsHeader from './ReportsHeader';
import ReportsDataTable from './ReportsDataTable';
2024-06-03 19:26:03 +00:00
import { useTeamUrl } from 'components/hooks';
export default function ReportsPage() {
const { teamId } = useTeamUrl();
2024-02-06 07:59:33 +00:00
return (
<>
<ReportsHeader />
<ReportsDataTable teamId={teamId} />
</>
);
}
2024-03-14 09:45:00 +00:00
export const metadata: Metadata = {
2024-02-17 23:12:14 +00:00
title: 'Reports',
2024-02-06 07:59:33 +00:00
};