interface ChapterListProps { currentChapterNo: number; } // 左栏目录(UX §6.3)。M1 无章节列表端点 → 仅展示当前章占位。 // 桌面 aside 包裹;移动端经 Workbench 抽屉复用 ChapterListContent。 export function ChapterList({ currentChapterNo }: ChapterListProps) { return ( ); } export function ChapterListContent({ currentChapterNo }: ChapterListProps) { return ( <>

目录

多卷多章目录将在大纲模块开放(后续里程碑)。

); }