Answers for "9. What do you usually do in componentDidMount() and componentDidUpdate()?"

0

componentDidUpdate

componentDidUpdate(prevProps, prevState) {
  if (prevState.pokemons !== this.state.pokemons) {
    console.log('pokemons state has changed.')
  }
}
Posted by: Guest on November-10-2020

Code answers related to "9. What do you usually do in componentDidMount() and componentDidUpdate()?"

Browse Popular Code Answers by Language