mirror of
https://github.com/cfngc4594/monaco-editor-lsp-next.git
synced 2026-05-31 10:18:52 +00:00
10 lines
264 B
TypeScript
10 lines
264 B
TypeScript
import { ProtectedLayout } from "@/features/dashboard/layouts/protected-layout";
|
|
|
|
export default async function StudentCoursesLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <ProtectedLayout roles={["STUDENT"]}>{children}</ProtectedLayout>;
|
|
}
|