mirror of
https://github.com/massbug/judge4c.git
synced 2026-05-20 13:18:52 +00:00
5 lines
232 B
TypeScript
5 lines
232 B
TypeScript
|
|
import GenericLayout from "../_components/GenericLayout";
|
||
|
|
|
||
|
|
export default function GuestLayout({ children }: { children: React.ReactNode }) {
|
||
|
|
return <GenericLayout allowedRoles={["ADMIN", "TEACHER"]}>{children}</GenericLayout>;
|
||
|
|
}
|