mirror of
https://github.com/massbug/judge4c.git
synced 2025-07-04 15:50:51 +00:00
5 lines
234 B
TypeScript
5 lines
234 B
TypeScript
|
import GenericLayout from "../_components/GenericLayout";
|
||
|
|
||
|
export default function ProblemLayout({ children }: { children: React.ReactNode }) {
|
||
|
return <GenericLayout allowedRoles={["ADMIN", "TEACHER"]}>{children}</GenericLayout>;
|
||
|
}
|