Guest User

Untitled

a guest
Mar 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. ## Component Lifecycle
  2. ### High Level
  3. * Initialization
  4. * State/props changes
  5. * Destruction
  6. ### Detailed
  7. #### Initialization
  8. * getIntialState()
  9. * getDefaultProps()
  10. * componentWillMount
  11. * render
  12. * componentDidMount
  13. #### Updates (Multiple)
  14. * componentWillReceiveProps
  15. * shouldComponentUpdate
  16. * componetWillUpdate
  17. * render
  18. * componentDidUpdate
  19. #### Destruction
  20. * componentWillUnmount
Add Comment
Please, Sign In to add comment