import type { Meta, StoryObj } from '@storybook/react' import { IVideoEmbed } from './VideoEmbed.interface' import VideoEmbed from './VideoEmbed.component' // More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export export default { title: 'Components/VideoEmbed', component: VideoEmbed, argTypes: {} } as Meta export const Embed: StoryObj = { args: { autoplay: true, controls: true, loop: true, muted: true, playsInline: true, poster: '', embed: 'https://www.youtube.com/watch?v=Ijk4j-r7qPA' } }