umami/src/app/(main)/websites/WebsitesPage.tsx

13 lines
396 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
'use client';
import WebsitesHeader from 'app/(main)/settings/websites/WebsitesHeader';
import WebsitesDataTable from 'app/(main)/settings/websites/WebsitesDataTable';
2024-02-23 06:21:11 +00:00
export default function WebsitesPage({ teamId }: { teamId: string }) {
2024-02-06 07:59:33 +00:00
return (
<>
2024-02-23 06:21:11 +00:00
<WebsitesHeader teamId={teamId} allowCreate={false} />
2024-02-19 19:31:11 +00:00
<WebsitesDataTable teamId={teamId} allowEdit={false} />
2024-02-06 07:59:33 +00:00
</>
);
}