Skip to content

Pa1mekala37/ReactJs-Component-Life-Cycle

Repository files navigation

Component Life Cycle

  • Mounting Phase
    • constructor()
    • render()
    • componentDidMount()
  • Updating Phase
    • render()
  • Unmounting phase
    • componentWillUnmount()
  • Behind the scenes
    • Virtual DOM

image