Skip to content

Instantly share code, notes, and snippets.

@kocisov
Created May 28, 2017 18:48
Show Gist options
  • Save kocisov/866a0e8145f8a681906be3875f204c65 to your computer and use it in GitHub Desktop.
Save kocisov/866a0e8145f8a681906be3875f204c65 to your computer and use it in GitHub Desktop.
class E extends PureComponent {
changeText = e => {
this.setState({
text: e.target.value
});
}
render() {
return (
<div onClick={this.changeText} />
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment