mirror of
https://github.com/massbug/judge4c.git
synced 2025-07-07 18:30:53 +00:00
6 lines
251 B
TypeScript
6 lines
251 B
TypeScript
|
import GenericPage from '@/features/user-management/components/generic-page'
|
||
|
import { adminConfig } from '@/features/user-management/config/admin'
|
||
|
|
||
|
export default function AdminPage() {
|
||
|
return <GenericPage userType="admin" config={adminConfig} />
|
||
|
}
|