2024-03-20 21:09:47 +03:00
|
|
|
import React from "react";
|
|
|
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
|
import App from "./App.tsx";
|
|
|
|
|
import "./index.css";
|
2026-02-21 08:29:21 +03:00
|
|
|
import "./i18n/config";
|
2024-03-20 21:09:47 +03:00
|
|
|
|
|
|
|
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
|
|
|
|
<React.StrictMode>
|
|
|
|
|
<App />
|
|
|
|
|
</React.StrictMode>,
|
|
|
|
|
);
|