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

14 lines
319 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
'use client';
import TeamProvider from 'app/(main)/teams/[teamId]/TeamProvider';
import TeamDetails from './TeamDetails';
2024-02-07 03:50:38 +00:00
export function TeamPage({ teamId }: { teamId: string }) {
2024-02-06 07:59:33 +00:00
return (
<TeamProvider teamId={teamId}>
<TeamDetails teamId={teamId} />
</TeamProvider>
);
}
2024-02-07 03:50:38 +00:00
export default TeamPage;