import type { Meta, StoryObj } from '@storybook/react' import { AmountInput } from './index' const meta: Meta = { component: AmountInput, title: 'organisms/AmountInput', args: { } } export default meta type Story = StoryObj export const AmountInputPrimary: Story = { args: { label: 'Amount' } }