Demos
Empty
<Field.Email onChange={(value) => console.log('onChange', value)} />
Placeholder
<Field.Emailplaceholder="Enter email address..."onChange={(value) => console.log('onChange', value)}/>
Label
<Field.Emaillabel="Label text"onChange={(value) => console.log('onChange', value)}/>
Label and value
<Field.Emaillabel="Label text"value="my-m@il.com"onChange={(value) => console.log('onChange', value)}/>
Disabled
<Field.Emailvalue="my-m@il.com"label="Label text"onChange={(value) => console.log('onChange', value)}disabled/>
Invalid syntax
<Field.Emailvalue="Not a mail"label="Label text"onChange={(value) => console.log('onChange', value)}validateInitially/>
Error message
This is what is wrong...
<Field.Emailvalue="foo@bar.com"label="Label text"onChange={(value) => console.log('onChange', value)}error={new FormError('This is what is wrong...')}/>
Validation - Required
<Field.Emailvalue="my-m@il.com"label="Label text"onChange={(value) => console.log('onChange', value)}required/>