mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 03:25:40 +01:00
10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
import TeamMembersPage from './TeamMembersPage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function ({ params: { teamId } }) {
|
|
return <TeamMembersPage teamId={teamId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Team members - Umami',
|
|
};
|