mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
12 lines
416 B
TypeScript
12 lines
416 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, userId }: { teamId: string; userId: string }) {
|
|
return (
|
|
<>
|
|
<WebsitesHeader teamId={teamId} />
|
|
<WebsitesDataTable teamId={teamId} userId={userId} allowEdit={false} />
|
|
</>
|
|
);
|
|
}
|