import type { Meta, StoryObj } from '@storybook/react' import { InputDate } from './index' const meta: Meta = { component: InputDate, title: 'molecules/InputDate', args: { } } export default meta type Story = StoryObj export const InputDatePrimary: Story = { args: { label: 'Label', withRange: false } }