import React from 'react'; import {useActionState} from './helper'; import InputArray from '../src/components/InputArray'; import {Wrapper} from './ui'; import {withA11y} from '@storybook/addon-a11y'; export default { title: 'InputArray', component: InputArray, decorators: [withA11y], }; export const NumberType = () => { const [value, setValue] = useActionState("onChange", [1,2,3]); return ( ); }; export const StringType = () => { const [value, setValue] = useActionState("onChange", ["a", "b", "c"]); return ( ); };