From 543355722533c9a79090a99b7ffd250de73288eb Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Tue, 25 Feb 2025 22:08:38 +0800 Subject: [PATCH] feat(editor): add WorkspaceEditorHeader to WorkspaceEditorLayout --- src/app/(app)/playground/@workspace/@editor/layout.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 (
+ {children}