| import { StrictMode } from 'react' | |
| import { createRoot } from 'react-dom/client' | |
| import './index.css' | |
| import AppRouter from './AppRouter' | |
| import './i18n.ts'; | |
| createRoot(document.getElementById('root')!).render( | |
| <StrictMode> | |
| <AppRouter /> | |
| </StrictMode> | |
| ) | |