옹알의 개발 블로그

React lifecycle

☕️ 1 min read

Mount

  • constructor
  • componentWillMount
  • render
  • componentDidMount

Update

prop, state 변경

  • componentWillReceiveProps
  • shouldComponentUpdate
  • componentWillUpdate
  • render
  • componentDidUpdate

State Change

  • shouldComponentUpdate
  • componentWillUpdate
  • render
  • componentDidUpdate

Unmounting

  • componentWillUnmount