Sans paramètre
function clickMe(e){
//e is the event
}
<button onClick={this.clickMe}></button>
Avec paramètre
function clickMe(parameter){
//how to get the "e" ?
}
<button onClick={() => this.clickMe(someparameter)}></button>
Je veux obtenir le event
. Comment puis-je l'obtenir ?