aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/admin/teams/page.tsx
blob: 987f02b36597f34c07a8400223c65c732a2c13dc (plain) (blame)
1
2
3
4
5
6
7
8
9
import type { Metadata } from 'next';
import { AdminTeamsPage } from './AdminTeamsPage';

export default function () {
  return <AdminTeamsPage />;
}
export const metadata: Metadata = {
  title: 'Teams',
};