mirror of
https://github.com/umami-software/umami.git
synced 2026-02-23 05:55:35 +01:00
12 lines
309 B
TypeScript
12 lines
309 B
TypeScript
import { Metadata } from 'next';
|
|
import TeamMembersPage from './TeamMembersPage';
|
|
|
|
export default async function ({ params }: { params: { teamId: string } }) {
|
|
const { teamId } = await params;
|
|
|
|
return <TeamMembersPage teamId={teamId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Team Members',
|
|
};
|