Refactored website components. New layout.

This commit is contained in:
Mike Cao
2025-05-20 01:12:07 -07:00
parent 6e41ba2e2c
commit 06f76dda13
35 changed files with 1159 additions and 987 deletions

View File

@@ -3,15 +3,16 @@ import { Metadata } from 'next';
import { ReportsHeader } from './ReportsHeader';
import { ReportsDataTable } from './ReportsDataTable';
import { useNavigation } from '@/components/hooks';
import { PageBody } from '@/components/common/PageBody';
export function ReportsPage() {
const { teamId } = useNavigation();
return (
<>
<PageBody>
<ReportsHeader />
<ReportsDataTable teamId={teamId} />
</>
</PageBody>
);
}