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