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

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