Component Lifecycle 이번에는 16.3 버전 이상의 변경된 내용에 대해 살펴보겠습니다. 라이프사이클 변경 사항(v16.3 이상) constructor componentWillMount => getDerivedStateFromProps render componentDidMount componentWillReceiveProps => getDerivedStateFromProps shouldComponentUpdate render componentWillUpdate => getSnapshotBeforeUpdate DOM에 적용 componentDidUpdate componentWillUnmount 1. getDerivedStateFromProps getDerivedStateFromProps는 최초..