mirror of
https://github.com/zoriya/v10.git
synced 2026-08-11 16:40:27 +00:00
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
type StoryboardProps = {
|
|
src?: string | undefined;
|
|
};
|
|
|
|
export function Storyboard({ src }: StoryboardProps) {
|
|
if (!src) return null;
|
|
return <track kind="metadata" label="thumbnails" src={src} default />;
|
|
}
|