import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; const rootElement = document.getElementById('root'); if (!rootElement) { throw new Error("No se pudo encontrar el elemento raíz para montar la aplicación."); } try { const root = ReactDOM.createRoot(rootElement); root.render( ); } catch (error) { console.error("Error crítico durante el renderizado:", error); rootElement.innerHTML = `

Error al cargar FranGo

Hubo un problema al iniciar la aplicación en este dispositivo.

`; }