mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2025-07-07 11:40:52 +00:00
5 lines
242 B
TypeScript
5 lines
242 B
TypeScript
|
import ProtectedLayout from "../_components/ProtectedLayout";
|
||
|
|
||
|
export default function StudentLayout({ children }: { children: React.ReactNode }) {
|
||
|
return <ProtectedLayout allowedRoles={["ADMIN", "TEACHER"]}>{children}</ProtectedLayout>;
|
||
|
}
|