React pass parameter into onClick method
This example will show you how to pass a parameter to the react onClick event method.
In react we normally attach event handler method to the onClick
event like this.
<button onClick={handleClick} >Click me</button>
if you want to pass parameters to the event handler method you need to use arrow functions.
<button onClick={()=>handleClick(someValue)} >Click me</button>