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

13 lines
416 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';
export default function WebsitesPage({ teamId, userId }: { teamId: string; userId: string }) {
return (
<>
<WebsitesHeader teamId={teamId} />
<WebsitesDataTable teamId={teamId} userId={userId} allowEdit={false} />
</>
);
}