Fixed teams settings.
This commit is contained in:
10
src/app/(main)/teams/[teamId]/settings/websites/page.tsx
Normal file
10
src/app/(main)/teams/[teamId]/settings/websites/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import TeamWebsitesPage from './TeamWebsitesPage';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default function ({ params: { teamId } }) {
|
||||
return <TeamWebsitesPage teamId={teamId} />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Teams Websites',
|
||||
};
|
||||
Reference in New Issue
Block a user