15.How to pass a parameter to an event handler or callback? Posted on March 27, 2019 by admin 0 You can use an arrow function to wrap around an event handler and pass parameters: <button onClick={() => this.handleClick(id)} /> This is an equivalent to calling .bind: <button onClick={this.handleClick.bind(this, id)} /> Leave a Reply Cancel reply Your email address will not be published. Required fields are marked *Comment Name * Email * Website