mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +00:00
15 lines
380 B
TypeScript
15 lines
380 B
TypeScript
|
import WorkspaceEditorFooter from "@/app/(app)/playground/@workspace/@editor/components/footer";
|
||
|
|
||
|
interface WorkspaceEditorLayoutProps {
|
||
|
children: React.ReactNode;
|
||
|
}
|
||
|
|
||
|
export default function WorkspaceEditorLayout({ children }: WorkspaceEditorLayoutProps) {
|
||
|
return (
|
||
|
<div className="h-full flex flex-col">
|
||
|
{children}
|
||
|
<WorkspaceEditorFooter />
|
||
|
</div>
|
||
|
);
|
||
|
}
|