Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 2.71 KB

README.md

File metadata and controls

42 lines (32 loc) · 2.71 KB

Table of Contents

Dev Notes

  • styling done with mostly .css; styles copied from previous day (Day 13) with minor changes
  • folders not containing primary components renamed by inserting trailing _ (experimental)
  • Component Life Cycle in table form with links to official documentation
Mounting Updating Unmounting
constructor(props)
static getDerivedStateFromProps (props, state) static getDerivedStateFromProps (props, state)
shouldComponentUpdate (nextProps, nextState)
render() render()
getSnapshotBeforeUpdate (prevProps, prevState)
componentDidMount() componentDidUpdate (prevProps, prevState, snapshot) componentWillUnmount()

Learnings

  • React Life Cycle Diagram [1] React Life Cycle Diagram

Third Party Resources

Other References