Making Sense of the Profiler Results
In this lesson, let's discuss how commits are useful and how to read the information provided by them.
We'll cover the following...
React Phases
Conceptually, React does work in two phases:
-
The render phase where components are rendered and the virtual DOM diffed.
-
The commit phase where actual changes in the virtual DOM are ...