import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; import App from './App.tsx'; import './index.css'; import './i18n'; // Wait for translations to load before rendering import i18next from 'i18next'; i18next.loadNamespaces(['translation']).then(() => { createRoot(document.getElementById('root')!).render( ); });