mirror of
https://github.com/massbug/judge4c.git
synced 2025-07-03 23:30:50 +00:00
5 lines
221 B
TypeScript
5 lines
221 B
TypeScript
|
import GenericLayout from "../_components/GenericLayout";
|
||
|
|
||
|
export default function AdminLayout({ children }: { children: React.ReactNode }) {
|
||
|
return <GenericLayout allowedRoles={["ADMIN"]}>{children}</GenericLayout>;
|
||
|
}
|