Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sanketmeghani/6e737378f7dd4a439bc1093ddd5bec16 to your computer and use it in GitHub Desktop.
Save sanketmeghani/6e737378f7dd4a439bc1093ddd5bec16 to your computer and use it in GitHub Desktop.
React event handler without parameters
handleClick(e) {
console.log('Clicked', e);
}
render() {
<button onClick={this.handleClick.bind(this)}></button>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment