import type { Meta, StoryObj } from '@storybook/react'; import React from 'react'; import { LazyVideo } from '.'; type TComponent = typeof LazyVideo; const meta: Meta = { title: 'Video/LazyVideo', component: LazyVideo, tags: ['autodocs'], decorators: [ (Story) => (
), ], args: { autoPlay: true, controls: true, muted: true, }, }; export default meta; export const Default: StoryObj = { args: { src: './video/video.mp4', }, };