umami/src/app/(main)/settings/teams/[teamId]/websites/page.tsx

16 lines
382 B
TypeScript
Raw Normal View History

2024-02-06 04:29:00 +00:00
import TeamWebsites from './TeamWebsites';
2024-02-05 04:22:31 +00:00
import TeamProvider from 'app/(main)/teams/[teamId]/TeamProvider';
2024-02-06 04:29:00 +00:00
import { Metadata } from 'next';
2023-09-29 12:29:22 +00:00
2024-01-29 22:47:52 +00:00
export default function ({ params: { teamId } }) {
2024-02-05 04:22:31 +00:00
return (
<TeamProvider teamId={teamId}>
2024-02-06 04:29:00 +00:00
<TeamWebsites teamId={teamId} />
2024-02-05 04:22:31 +00:00
</TeamProvider>
);
2023-09-29 12:29:22 +00:00
}
2024-02-06 04:29:00 +00:00
export const metadata: Metadata = {
title: 'Teams websites - Umami',
};