On this page
Lifecycle
On this page
Lifecycle
리액트 라이프사이클 정리
graph TD%% Mountingcon[constructor] --> derived[static getDerivedStateFromProps]derived --> render[render]render --> did[componentDidMount]%% Updatingderived --> should[shouldComponentUpdate]should --> renderrender --> snapshop[getSnapshotBeforeUpdate]snapshot --> did%% Unmountingwill[componentWillUnmount]%% Error Handlingderived --> catch[componentDidCatch]