umami/src/app/(main)/settings/websites/page.tsx

11 lines
271 B
TypeScript
Raw Normal View History

2023-10-08 05:42:49 +00:00
import { Metadata } from 'next';
2023-11-23 02:03:48 +00:00
import Websites from './Websites';
2023-09-29 12:29:22 +00:00
2024-02-03 01:49:17 +00:00
export default function ({ params: { teamId } }: { params: { teamId: string } }) {
return <Websites teamId={teamId} />;
2023-09-29 12:29:22 +00:00
}
2023-10-08 05:42:49 +00:00
export const metadata: Metadata = {
2024-02-03 01:49:17 +00:00
title: 'Websites Settings | Umami',
2023-10-08 05:42:49 +00:00
};