import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; const rootElement = document.getElementById('root'); // Only attempt to render React if the root element exists. // This allows the app to run in "static HTML" mode without errors. if (rootElement) { const root = ReactDOM.createRoot(rootElement); root.render( ); }