ajouter une table d'objet à la réaction d'état
setTheArray(currentArray => [...currentArray, newElement])
Jeff Le
setTheArray(currentArray => [...currentArray, newElement])
var joined = this.state.myArray.concat('new value');
this.setState({ myArray: joined })