comment exécuter la fonction sans utiliser onclick sur le code de réact

change:
  <button type="button" onClick={this.myFunction(argument)}> myButton </button>
  
to this: 
  <button type="button" onClick={this.myFunction.bind(this, argument)}> myButton </button>
Light Lemur