mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
15 lines
455 B
TypeScript
15 lines
455 B
TypeScript
'use client';
|
|
import { WebsitesHeader } from '@/app/(main)/settings/websites/WebsitesHeader';
|
|
import { WebsitesDataTable } from '@/app/(main)/settings/websites/WebsitesDataTable';
|
|
import { useTeamUrl } from '@/components/hooks';
|
|
|
|
export function WebsitesPage() {
|
|
const { teamId } = useTeamUrl();
|
|
|
|
return (
|
|
<>
|
|
<WebsitesHeader teamId={teamId} allowCreate={false} />
|
|
<WebsitesDataTable teamId={teamId} allowEdit={false} />
|
|
</>
|
|
);
|
|
}
|