mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
11 lines
328 B
TypeScript
11 lines
328 B
TypeScript
'use client';
|
|
import { TeamSettings } from '@/app/(main)/teams/[teamId]/TeamSettings';
|
|
import { TeamProvider } from '@/app/(main)/teams/TeamProvider';
|
|
|
|
export function AdminTeamPage({ teamId }: { teamId: string }) {
|
|
return (
|
|
<TeamProvider teamId={teamId}>
|
|
<TeamSettings teamId={teamId} />
|
|
</TeamProvider>
|
|
);
|
|
}
|