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

11 lines
227 B
TypeScript
Raw Normal View History

2024-02-06 04:29:00 +00:00
import { Metadata } from 'next';
2024-02-06 07:59:33 +00:00
import TeamPage from './TeamPage';
2023-09-29 12:29:22 +00:00
2024-01-29 22:47:52 +00:00
export default function ({ params: { teamId } }) {
2024-02-06 07:59:33 +00:00
return <TeamPage teamId={teamId} />;
2023-09-29 12:29:22 +00:00
}
2024-02-06 04:29:00 +00:00
export const metadata: Metadata = {
2024-02-17 23:12:14 +00:00
title: 'Teams Details',
2024-02-06 04:29:00 +00:00
};