import type { StoryboardScript } from "../../hooks/useStoryboard"; export interface StoryboardScriptPanelProps { script: StoryboardScript; } /** * Collapsible view of the companion narration script (SCRIPT.md). The mature * pipeline keeps the full voiceover script — voice settings, per-line delivery * and timing — in this file; here it's surfaced read-only alongside the frames. * (Per-frame VO iteration will live in the frame focus view.) */ export function StoryboardScriptPanel({ script }: StoryboardScriptPanelProps) { if (!script.exists) return null; return (
Narration script {script.path}
        {script.content}
      
); }