React state changes, Virtual DOM, reconciliation

Let’s see what happens under the hood. At this point, we call setState to tell React that the state of this component will change. React will then schedule an async call to the render method. Whether its five ms, or ten ms, we don’t know when it happens, but it will happen in the future. … Continue reading React state changes, Virtual DOM, reconciliation