import { CssVarsProvider } from "@mui/joy"; import { createRoot } from "react-dom/client"; import { Provider } from "react-redux"; import store from "./store"; import App from "./App"; import theme from "./theme"; import "./helpers/polyfill"; import "./i18n"; import "./less/code-highlight.less"; import "./css/global.css"; import "./css/tailwind.css"; const container = document.getElementById("root"); const root = createRoot(container as HTMLElement); root.render( );