mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
10 lines
283 B
TypeScript
10 lines
283 B
TypeScript
import { Metadata } from 'next';
|
|
import WebsitesPage from './WebsitesPage';
|
|
|
|
export default function ({ params: { teamId } }: { params: { teamId: string } }) {
|
|
return <WebsitesPage teamId={teamId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Websites Settings | Umami',
|
|
};
|