diff --git a/src/app/editor/EditorCanvas.tsx b/src/app/editor/EditorCanvas.tsx index db10ac0..4501223 100644 --- a/src/app/editor/EditorCanvas.tsx +++ b/src/app/editor/EditorCanvas.tsx @@ -86,7 +86,7 @@ export function EditorCanvas(props: EditorCanvasProps) { > {blocks.length === 0 ? (
- 왼쪽에서 "텍스트 블록 추가" 버튼을 눌러 블록을 추가해 보세요. + 왼쪽에서 "텍스트" 버튼을 눌러 블록을 추가해 보세요.
) : ( ([]); + const historyLength = useEditorStore((state) => (state as any).history?.length ?? 0); + const futureLength = useEditorStore((state) => (state as any).future?.length ?? 0); + const canUndo = historyLength > 0; + const canRedo = futureLength > 0; + const [menuOpen, setMenuOpen] = useState(false); const [activeModal, setActiveModal] = useState<"project" | "json" | null>(null); @@ -738,31 +744,57 @@ export default function EditorPage() { return (
-
-
-

Page Editor

-

빌더 MVP용 에디터 페이지 골격

+
+
+ + +
+

Page Editor

+

빌더 MVP용 에디터 페이지 골격

+
- 프로젝트 목록 +