mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
13 lines
396 B
TypeScript
13 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} />
|
|
</>
|
|
);
|
|
}
|