Virtual DOM, Fibre and Reconciliation
Virtual DOM
The Virtual DOM is a lightweight copy of the actual DOM that React uses to optimize updates.
Instead of directly manipulating the real DOM (which is slow), React creates a virtual representation of ...