Skip to content

Instantly share code, notes, and snippets.

@agoiabel
Created September 3, 2018 08:06
Show Gist options
  • Select an option

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

Select an option

Save agoiabel/533b1c9b65f43e237a01cc9ff5720495 to your computer and use it in GitHub Desktop.
render() {
return (
<TextInput name="name"
placeholder={this.state.formControls.name.placeholder}
value={this.state.formControls.name.value}
onChange={this.changeHandler}
touched={this.state.formControls.name.touched}
valid={this.state.formControls.name.valid}
/>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment