Teams context settings.

This commit is contained in:
Mike Cao 2024-02-02 17:49:17 -08:00
parent 4429198397
commit 8f853ddb97
77 changed files with 317 additions and 272 deletions

View file

@ -1,10 +1,10 @@
import { Metadata } from 'next';
import Websites from './Websites';
export default function () {
return <Websites />;
export default function ({ params: { teamId } }: { params: { teamId: string } }) {
return <Websites teamId={teamId} />;
}
export const metadata: Metadata = {
title: 'Websites Settings | umami',
title: 'Websites Settings | Umami',
};