import React from 'react'; import { States } from '../../utilities'; import { TextInput, TextInputProps } from './TextInput'; export default { title: 'Components/TextInput' }; export const Default = () => ( states={[ {}, { focus: true }, { disabled: true }, { defaultValue: 'With value' }, { error: 'Error', defaultValue: 'With value' } ]} > );