Fixed websites paging.
This commit is contained in:
12
src/app/(main)/settings/websites/WebsitesSettingsPage.tsx
Normal file
12
src/app/(main)/settings/websites/WebsitesSettingsPage.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
'use client';
|
||||
import WebsitesDataTable from './WebsitesDataTable';
|
||||
import WebsitesHeader from './WebsitesHeader';
|
||||
|
||||
export default function WebsitesSettingsPage({ teamId }: { teamId: string }) {
|
||||
return (
|
||||
<>
|
||||
<WebsitesHeader teamId={teamId} />
|
||||
<WebsitesDataTable teamId={teamId} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user