aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/settings/teams/TeamsSettingsPage.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/(main)/settings/teams/TeamsSettingsPage.tsx')
-rw-r--r--src/app/(main)/settings/teams/TeamsSettingsPage.tsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/app/(main)/settings/teams/TeamsSettingsPage.tsx b/src/app/(main)/settings/teams/TeamsSettingsPage.tsx
new file mode 100644
index 0000000..dc3e3bc
--- /dev/null
+++ b/src/app/(main)/settings/teams/TeamsSettingsPage.tsx
@@ -0,0 +1,16 @@
+'use client';
+import { Column } from '@umami/react-zen';
+import { TeamsDataTable } from '@/app/(main)/teams/TeamsDataTable';
+import { TeamsHeader } from '@/app/(main)/teams/TeamsHeader';
+import { Panel } from '@/components/common/Panel';
+
+export function TeamsSettingsPage() {
+ return (
+ <Column gap="6">
+ <TeamsHeader />
+ <Panel>
+ <TeamsDataTable />
+ </Panel>
+ </Column>
+ );
+}