import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import './index.css' import App from './App' import { ErrorBoundary } from './components/ErrorBoundary' import './i18n/config' createRoot(document.getElementById('root')!).render( , )