Posts Render and commit
Post
Cancel

Render and commit

https://react.dev/learn/render-and-commit

  • 리액트는 두가지 렌더링을 한다
    1. 최초 렌더링
    2. 리렌더링
  • 리렌더링은 상태가 업데이트 되었을때 업데이트 된 컴포넌트만 수행한다.
    • 이때 재귀적으로 말단 노드까지 업데이트를 진행한다.
  • 업데이트는 최소한으로 이루어지며 변경이 발생한 부분만 수정한다.
This post is licensed under CC BY 4.0 by the author.