Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 690 Bytes

07.01.Reconciliation.md

File metadata and controls

13 lines (7 loc) · 690 Bytes

Jam3 Lessons - React

Reconciliation

React provides an easy way to declare how a component will be structured and it will later take care of updating it when a state or a prop has changed generating a new render tree, comparing it with the previous one and only modifying what's necessary.

This task is called Reconciliation and it's hard to accomplish in an efficient way.

Understanding that we need to help React figure out which parts of our components are more likely to change is one of the keys of building a performant React web application.

References