"use client"; interface EditorProps { value: string; onChange: (value: string) => void; streaming: boolean; } // 中栏正文编辑器:宋体、720px 居中、行高 1.9(UX §2.3 / §6.3)。 // 流式中显示朱砂光标提示(prefers-reduced-motion 下不闪烁,见 globals.css)。 export function Editor({ value, onChange, streaming }: EditorProps) { return (