Skip to content

Instantly share code, notes, and snippets.

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