import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; import 'avanza-ui/dist/studio-theme.css'; // Importar estilos del tema const rootElement = document.getElementById('root'); if (!rootElement) throw new Error('Failed to find the root element'); ReactDOM.createRoot(rootElement).render( );