What is Reconciliation in React?

What is Reconciliation in React?

ยท

1 min read

Reconciliation is the process to update UI in React. React uses The Diffing algorithm to differentiate one tree with another tree to determine which parts need to be changed. and that's why is so fast because it won't update the entire UI, it updates the UI that it needs to update.

ย