Virtual DOM
React implements a browser-independent DOM system for performance and cross-browser compatibility. They call this the Virtual DOM.
- Replace the JavaScript code in - main.jswith the following:const rootElement = document.getElementById("root");const root = ReactDOM.createRoot(rootElement);function renderElement() {const element = (<div className="post"><h1>My First Blog Post</h1><div>Author: Mark Twain</div><div>Published: {new Date().toLocaleTimeString()}</div><p>I am new to blogging and this is my first post. You should expect alot of great things from me.</p></div>);root.render(element);}setInterval(renderElement, 1000);
- Open the page in Chrome and inspect the published date to see that it updates just the date but the rest of the DOM is not updated. 
- See the diagram below to better understand how the Virtual DOM works in React.  - Reference