Mounting 가장 처음 실행되는 단계 constructor에서 모든 것이 이루어지며, state와 prop, component 등을 준비시킴 rendering constructor에서는 http request와 같은 side effect를 실행시키지 말 것 총 4가지 메서드 constructor() static getDerivedStateFromProps() render() componentDidMount() Updating state나 prop이 바뀌어 re-rendering이 필요할 때 총 5가지 메서드 static getDerivedStateFromProps() shouldComponentUpdate() render() getSnapshotBeforeUpdate() componentDidUpda..