What is the difference between re-rendering and repainting?
Virtual DOM and Reconciliation
Audio flashcard · 0:13Nortren·
What is the difference between re-rendering and repainting?
0:13
Re-rendering is a React concept meaning the component function runs again to produce a new virtual DOM. Repainting is a browser concept meaning the actual pixels on screen are redrawn. A re-render only causes a repaint if the real DOM actually changes.