import React from "react"; import ReactDOM from "react-dom/client"; import "./styles/index.css"; import App from "./components/App.jsx"; const rootElement = document.getElementById("root"); if (!rootElement) { throw new Error("No se encontrĂ³ el elemento #root en index.html"); } ReactDOM.createRoot(rootElement).render( );