# 라이프사이클

- [라이프 사이클이 뭔데?](/coding-apple-react/2/undefined-1/what-is-life-cycle.md): 리액트에서 컴포넌트를 다루는 중요한 개념
- [render](/coding-apple-react/2/undefined-1/render.md): JSX를 작성하는 부분, 실제 렌더링이 이루어 집니다.
- [componentDidMount](/coding-apple-react/2/undefined-1/componentdidmount.md): 컴포넌트가 첫 로딩을 끝냈을 때 한 번만 실행되는 라이프사이클 함수
- [componentDidUpdate](/coding-apple-react/2/undefined-1/componentdidupdate.md): State나 Props가 업데이트 될 때마다 실행되는 함수
- [componentWillUnmount](/coding-apple-react/2/undefined-1/componentwillunmount.md): 컴포넌트가 사라질 때
- [라이프 사이클의 동작](/coding-apple-react/2/undefined-1/undefined.md): 여러 개의 컴포넌트의 라이프 사이클의 동작 방식
