How React Works Internally: Virtual DOM, Reconciliation, and Rendering
What actually happens when we call setState in React?
We write something as simple as:
setCount(count + 1);
And somehow, React figures out what changed, updates the right part of the page, and the br