import './i18n'; // for multilingual functionality import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import "./index.css"; import App from "./App.jsx"; import { Provider } from "react-redux"; import { store } from "./store/store"; const container = document.getElementById("root"); const root = createRoot(container); root.render( );