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(
Verifique o console.