> For the complete documentation index, see [llms.txt](https://ljh86029926.gitbook.io/coding-apple-react/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ljh86029926.gitbook.io/coding-apple-react/2/undefined-1.md).

# 라이프사이클

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