1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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<typeof AckeeSelectComponent>;
const Template: ComponentStory<typeof AckeeSelectComponent> = (args) => (
<IntlProvider locale="en">
<AckeeSelectComponent {...args} />
</IntlProvider>
);
export const AckeeSelect = Template.bind({});
AckeeSelect.args = {
initialValue: 'full',
};
|