2024-02-05 23:59:33 -08:00

11 lines
236 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 Settings - Umami',
};