feat(workspace): add editor layout with footer for problem page

This commit is contained in:
cfngc4594 2025-03-08 21:28:11 +08:00
parent 7f94f6a15b
commit a14087b395

View File

@ -0,0 +1,16 @@
import WorkspaceEditorFooter from "@/features/playground/workspace/editor/footer";
interface WorkspaceEditorLayoutProps {
children: React.ReactNode;
}
export default function WorkspaceEditorLayout({
children,
}: WorkspaceEditorLayoutProps) {
return (
<div className="h-full flex flex-col">
<div className="flex-1">{children}</div>
<WorkspaceEditorFooter />
</div>
);
}