monaco-editor-lsp-next/src/app/(app)/usermanagement/student/layout.tsx

5 lines
242 B
TypeScript
Raw Normal View History

import ProtectedLayout from "../_components/ProtectedLayout";
export default function StudentLayout({ children }: { children: React.ReactNode }) {
return <ProtectedLayout allowedRoles={["ADMIN", "TEACHER"]}>{children}</ProtectedLayout>;
}