import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; const rootElement = document.getElementById('root'); if (rootElement) { const root = ReactDOM.createRoot(rootElement); root.render( ); } else { // Graceful fallback for static HTML pages where #root is intentionally missing console.log("React root element not found. Running in static HTML mode."); }