blob: 19c14fd663e7c83b7fde8334759ee25334f529dd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { Metadata } from 'next';
import { WebsitesSettingsPage } from './WebsitesSettingsPage';
export default async function ({ params }: { params: Promise<{ teamId: string }> }) {
const { teamId } = await params;
return <WebsitesSettingsPage teamId={teamId} />;
}
export const metadata: Metadata = {
title: 'Websites',
};
|