import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; import './index.css'; const rootElement = document.getElementById('root'); try { if (!rootElement) { throw new Error("Fatal Error: The root element with id 'root' was not found in the DOM."); } ReactDOM.createRoot(rootElement).render( ); } catch (error) { console.error("Fatal error during React initialization:", error); if (rootElement) { rootElement.innerHTML = `

Erro de inicialização

Verifique o console.

`; } }