Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Created September 2, 2018 20:11
Show Gist options
  • Select an option

  • Save agoiabel/d0cb482fe47f1e2f38b43c2b6b3db203 to your computer and use it in GitHub Desktop.

Select an option

Save agoiabel/d0cb482fe47f1e2f38b43c2b6b3db203 to your computer and use it in GitHub Desktop.
constructor() {
super();
this.state = {
formControls: {
name: {
value: ''.
placeholder: 'What is your name',
valid: false,
touched: false,
validationRules: {
minLength: 3,
isRequired: true //just added this
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment