import React from 'react'; import {useActionState} from './helper'; import InputUrl from '../src/components/InputUrl'; import {InputContainer} from './ui'; export default { title: 'InputUrl', component: InputUrl, }; export const Valid = () => { const [value, setValue] = useActionState("onChange", "http://example.com"); return ( ); }; export const Invalid = () => { const [value, setValue] = useActionState("onChange", "foo"); return ( ); };