You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throw new Error("Impossibile trovare l'elemento root");
}
const root = ReactDOM.createRoot(rootElement);
try {
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
} catch (err) {
console.error("Errore durante il rendering:", err);
rootElement.innerHTML = '<div style="color:red; padding:20px;">Si è verificato un errore imprevisto durante l\'avvio dell\'app. Controlla la console.</div>';