aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/teams/TeamsPage.tsx
blob: 5b11bcf8346c653f2879b9cae6ad2444341862c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use client';
import { Column } from '@umami/react-zen';
import { TeamsDataTable } from '@/app/(main)/teams/TeamsDataTable';
import { TeamsHeader } from '@/app/(main)/teams/TeamsHeader';
import { PageBody } from '@/components/common/PageBody';
import { Panel } from '@/components/common/Panel';

export function TeamsPage() {
  return (
    <PageBody>
      <Column gap="6">
        <TeamsHeader />
        <Panel>
          <TeamsDataTable />
        </Panel>
      </Column>
    </PageBody>
  );
}