import { ComponentMeta, ComponentStory } from '@storybook/react' import { FlyingAnimation } from './FlyingAnimation' export default { title: 'DAO DAO / packages / stateless / components / FlyingAnimation', component: FlyingAnimation, } as ComponentMeta const Template: ComponentStory = (args) => ( ) export const Default = Template.bind({}) Default.args = { className: 'w-120 h-40', }