import React from 'react'; import { Meta, Story } from '@storybook/react'; import { AnimationsNumber } from './index'; export default { title: 'atoms/AnimationsNumber', component: AnimationsNumber, } as Meta; const Template: Story = (args) => ; export const Example = Template.bind({}); Example.args = { text: '0.00', };