diff --git a/src/app/(app)/playground/@workspace/@editor/layout.tsx b/src/app/(app)/playground/@workspace/@editor/layout.tsx index a0296a4..8dc64c7 100644 --- a/src/app/(app)/playground/@workspace/@editor/layout.tsx +++ b/src/app/(app)/playground/@workspace/@editor/layout.tsx @@ -1,12 +1,16 @@ +import WorkspaceEditorHeader from "@/app/(app)/playground/@workspace/@editor/components/header"; import WorkspaceEditorFooter from "@/app/(app)/playground/@workspace/@editor/components/footer"; interface WorkspaceEditorLayoutProps { children: React.ReactNode; } -export default function WorkspaceEditorLayout({ children }: WorkspaceEditorLayoutProps) { +export default function WorkspaceEditorLayout({ + children, +}: WorkspaceEditorLayoutProps) { return (