import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import ErrorBoundary from './components/ErrorBoundary'; import { conditionalPreload } from './utils/lazyComponents'; // Precarregar componentes críticos baseado na conexão conditionalPreload(); const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement ); root.render( );