DEV Community

Cover image for What is Reconciliation in React?
Anjan Karmakar
Anjan Karmakar

Posted on

What is Reconciliation in React?

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.

Top comments (0)