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