카테고리 없음
TIL_20 | React Lifecycle
일렁이는코드
2021. 11. 7. 22:01
Component Lifecycle 관계
부모 자식 컴포넌트 관계에서의 라이프 사이클
Component Lifecycle 단계
- constructor
- render
- componentDidMount
전체 과정에서 한번만 실행된다. - (fetch 완료)
- (setState)
- render
- componentDidUpdate
- componentWillUnmount
부모 자식 컴포넌트 관계에서의 라이프 사이클
반응형