mirror of
https://github.com/umami-software/umami.git
synced 2026-02-16 18:45:36 +01:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import { Metadata } from 'next';
|
|
import { TeamPage } from './TeamPage';
|
|
|
|
export default async function ({ params }: { params: { teamId: string } }) {
|
|
const { teamId } = await params;
|
|
|
|
return <TeamPage teamId={teamId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Teams Details',
|
|
};
|