React, "Diffing" and the DOM (dev.to)Jan 08, 2020
The "Virtual DOM" or VDOM is very similar to the real DOM, in that it is a tree-like structure kept in-memory, where React elements are represented as objects.
What Is React Reconciliation? (tiffanywhite.tech)May 19, 2018
In order for React to be as fast as it is, it only needs to update the parts of the DOM that need it. You really don’t need to worry about doing this yourself, but understanding how setState() in React works could be beneficial.
How React Reconciliation Works (css-tricks.com)May 17, 2018
As long as you understand the workings of setState(), you should be good to go. However, it’s also important to familiarize yourself with how this amazing library updates the DOM of your application.
Optimizing React: Virtual DOM explained (evilmartians.com)Mar 28, 2018
In this thorough beginner-friendly introduction to framework’s internals, we will demystify JSX, show you how React makes rendering decisions, explain how to find bottlenecks, and share some tips to avoid common mistakes.