Created
September 4, 2018 12:20
-
-
Save agoiabel/bd0903599f2b8a5e9a332a1c2972f29c 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
| gender: { | |
| value: '', | |
| placeholder: 'What is your gender', | |
| valid: false, | |
| touched: false, | |
| validationRules: { | |
| isRequired: true, | |
| }, | |
| options: [ | |
| { value: 'male', displayValue: 'Male' }, | |
| { value: 'female', displayValue: 'Female'} | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment