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