type StoryboardProps = { src?: string | undefined; }; export function Storyboard({ src }: StoryboardProps) { if (!src) return null; return ; }