import { ComponentMeta, ComponentStory } from '@storybook/react'; import { IntlProvider } from 'react-intl'; import AckeeSelectComponent from './ackee-select'; export default { title: 'Molecules/Forms', component: AckeeSelectComponent, argTypes: { initialValue: { control: { type: 'select', }, description: 'Initial selected option.', options: ['full', 'partial'], type: { name: 'string', required: true, }, }, }, } as ComponentMeta; const Template: ComponentStory = (args) => ( ); export const AckeeSelect = Template.bind({}); AckeeSelect.args = { initialValue: 'full', };