Created
September 2, 2018 20:11
-
-
Save agoiabel/d0cb482fe47f1e2f38b43c2b6b3db203 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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