Answers for "If the behavior of a component is dependent on the state of the component then it can be termed as _____ component."

0

componentDidUpdate

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

component did mmount

componentDidUpdate(prevProps, prevState, snapshot)
Posted by: Guest on May-01-2020

Code answers related to "If the behavior of a component is dependent on the state of the component then it can be termed as _____ component."

Browse Popular Code Answers by Language