mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
17 lines
448 B
TypeScript
17 lines
448 B
TypeScript
import { AdminTeamPage } from './AdminTeamPage';
|
|
import { TeamProvider } from '@/app/(main)/teams/[teamId]/TeamProvider';
|
|
import { Metadata } from 'next';
|
|
|
|
export default async function ({ params }: { params: Promise<{ teamId: string }> }) {
|
|
const { teamId } = await params;
|
|
|
|
return (
|
|
<TeamProvider teamId={teamId}>
|
|
<AdminTeamPage teamId={teamId} />
|
|
</TeamProvider>
|
|
);
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Team',
|
|
};
|