mirror of
https://github.com/umami-software/umami.git
synced 2026-02-11 16:17:13 +01:00
10 lines
266 B
TypeScript
10 lines
266 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',
|
|
};
|