Changed route ids to be more explicit.
This commit is contained in:
11
src/app/(main)/teams/[teamId]/websites/page.tsx
Normal file
11
src/app/(main)/teams/[teamId]/websites/page.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import WebsitesDataTable from 'app/(main)/settings/websites/WebsitesDataTable';
|
||||
import WebsitesHeader from 'app/(main)/settings/websites/WebsitesHeader';
|
||||
|
||||
export default function TeamWebsitesPage({ params: { teamId } }: { params: { teamId: string } }) {
|
||||
return (
|
||||
<>
|
||||
<WebsitesHeader teamId={teamId} />
|
||||
<WebsitesDataTable teamId={teamId} />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user