Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Created September 11, 2018 19:50
Show Gist options
  • Save yuritoledo/8235e7032a5cd9f5f74c0245c721c0c6 to your computer and use it in GitHub Desktop.
Save yuritoledo/8235e7032a5cd9f5f74c0245c721c0c6 to your computer and use it in GitHub Desktop.
handleChange = e => {
const { name, value } = e.target
this.setState({ [name]: value })
}
const { user } = this.state
<Input
name='user'
value={customer}
onChange={this.handleChange}
/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment