mirror of
https://github.com/umami-software/umami.git
synced 2026-02-20 20:45:39 +01:00
12 lines
396 B
TypeScript
12 lines
396 B
TypeScript
'use client';
|
|
import WebsitesHeader from 'app/(main)/settings/websites/WebsitesHeader';
|
|
import WebsitesDataTable from 'app/(main)/settings/websites/WebsitesDataTable';
|
|
|
|
export default function WebsitesPage({ teamId }: { teamId: string }) {
|
|
return (
|
|
<>
|
|
<WebsitesHeader teamId={teamId} allowCreate={false} />
|
|
<WebsitesDataTable teamId={teamId} allowEdit={false} />
|
|
</>
|
|
);
|
|
}
|