Answers for "Which React function is going to select which component is being rendered and which node it will be rendered to?"

0

componentDidUpdate

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

shouldcomponentupdate

shouldComponentUpdate(nextProps, nextState) {
  return true;
}
Posted by: Guest on June-08-2020

Code answers related to "Which React function is going to select which component is being rendered and which node it will be rendered to?"

Browse Popular Code Answers by Language