componentDidUpdate(prevProps) { // Utilisation classique (pensez bien à comparer les props) : if (this.props.userID !== prevProps.userID) { this.fetchData(this.props.userID); } }