Skip to content

Instantly share code, notes, and snippets.

@yonibot
Last active February 13, 2017 18:36
Show Gist options
  • Save yonibot/9b4df1ff45ac3d6d1d2976b1d2c7e5ca to your computer and use it in GitHub Desktop.
Save yonibot/9b4df1ff45ac3d6d1d2976b1d2c7e5ca to your computer and use it in GitHub Desktop.
<Form.Item label="E-mail">
{getFieldDecorator('email', {
rules: [{
required: true, message: 'Please input your E-mail!',
}, {
validator: this.checkEmailFormat
],
})(
<Input />
)}
</Form.Item>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment