Short: The React Virtual DOM
Too Long; Didn't Read
The Virtual DOM is a virtual representation of the browser DOM that will be kept in memory. If a change is made to an element on the web app, React will update the DOM. Even if websites are faster with React, if many elements need to be updated, it will result that the web apps, even if using React will get slow.