comment déclencher le bouton de téléchargement d'image à partir d'un autre bouton réagir js

upload() {
  document.getElementById("selectImage").click()
}

<div style={{display: 'grid'}}>
  <button id='plus' onClick={this.upload}>+</button>
  <input id='selectImage' hidden type="file" onChange={fileSelectHandler} />
</div>
Yucky Yacare