diff --git a/src/app/(app)/problems/[id]/@workspace/@editor/layout.tsx b/src/app/(app)/problems/[id]/@workspace/@editor/layout.tsx new file mode 100644 index 0000000..36c8a63 --- /dev/null +++ b/src/app/(app)/problems/[id]/@workspace/@editor/layout.tsx @@ -0,0 +1,16 @@ +import WorkspaceEditorFooter from "@/features/playground/workspace/editor/footer"; + +interface WorkspaceEditorLayoutProps { + children: React.ReactNode; +} + +export default function WorkspaceEditorLayout({ + children, +}: WorkspaceEditorLayoutProps) { + return ( +
+
{children}
+ +
+ ); +}