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