react-toolbox/docs/app/components/layout/main/modules/examples/input_example_1.txt

11 lines
338 B
Plaintext
Raw Normal View History

2015-11-01 10:41:40 +03:00
const InputTest = () => (
<div>
<Input type='text' label='Your fullname' icon='account-box' value='Tony Stark' />
<Input type='tel' label='Telephone number' icon='phone' />
<Input type='email' label='Email address' icon='email' />
<Input type='text' label='Disabled field' disabled />
</div>
);
return <InputTest />;