componentDidUpdate(prevProps, prevState) { // only update chart if the data has changed if (prevProps.data !== this.props.data) { this.chart = c3.load({ data: this.props.data }); } }
componentDidUpdate(prevProps, prevState) { if (prevState.pokemons !== this.state.pokemons) { console.log('pokemons state has changed.') } }