Skip to content

Instantly share code, notes, and snippets.

@ristaa
Created August 14, 2018 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ristaa/33d7d89ba343f54c793a0aab8f199c05 to your computer and use it in GitHub Desktop.
Save ristaa/33d7d89ba343f54c793a0aab8f199c05 to your computer and use it in GitHub Desktop.
Bind in constructor - react
class App extends React.Component {
constructor(props) {
super(props);
this.state = { message: "Hello World!" };
this.logMessage = this.logMessage.bind(this);
}
logMessage = () => {
console.log(this.state.message);
}
render() {
return (
<div className="App">
<input
type="button"
value="Show message"
onClick={this.logMessage}
/>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment