import type { Meta, StoryObj } from '@storybook/react'; import React from 'react'; import { VideoPlayerYoutube } from '.'; type TComponent = typeof VideoPlayerYoutube; const meta: Meta = { title: 'Video/VideoPlayerYoutube', component: VideoPlayerYoutube, tags: ['autodocs'], args: { id: 'oOkGmK3_Hdg', }, decorators: [ (Story) => (
), ], }; export default meta; export const Default: StoryObj = {}; export const Autolplay: StoryObj = { args: { autoplay: 1, }, };