mirror of
https://github.com/umami-software/umami.git
synced 2026-02-21 04:55:36 +01:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import { Metadata } from 'next';
|
|
import TeamPage from './TeamPage';
|
|
|
|
export default function ({ params: { teamId } }) {
|
|
return <TeamPage teamId={teamId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Teams Details',
|
|
};
|