import type { ReactNode } from "react"; import "../../styles/editor.css"; export default function EditorLayout({ children }: { children: ReactNode }) { // 에디터 전용 전역 스타일(editor.css)을 로드하기 위한 중첩 레이아웃. // 실제 마크업 구조는 page.tsx 에서 정의하며, 여기서는 children 을 그대로 반환한다. return children; }