Can somebody please take away my confusion about react rendering process? when we update the state and the browser re-paint the UI of the updated component. is that what we call rendering? or when the virtual dom informs the real DOM (browser dom) of the changes?
CodePudding user response:
Checkout these links: https://reactjs.org/docs/rendering-elements.html (It's the official documentation of React)
https://www.geeksforgeeks.org/explain-the-purpose-of-render-in-reactjs/ (Good example to understand what render in react means)
