aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/admin/websites/AdminWebsitesPage.tsx
blob: 1c2ac9218b1b043839a65c059a3937707260f342 (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 { PageHeader } from '@/components/common/PageHeader';
import { Panel } from '@/components/common/Panel';
import { useMessages } from '@/components/hooks';
import { AdminWebsitesDataTable } from './AdminWebsitesDataTable';

export function AdminWebsitesPage() {
  const { formatMessage, labels } = useMessages();

  return (
    <Column gap="6" margin="2">
      <PageHeader title={formatMessage(labels.websites)} />
      <Panel>
        <AdminWebsitesDataTable />
      </Panel>
    </Column>
  );
}