import ReactDOM from "react-dom/client"; import { Provider } from "react-redux"; import Widget from "./widget/index"; import './assets/index.css'; import store from "./app/store"; import './i18n'; const root = ReactDOM.createRoot(document.getElementById("root") as HTMLElement); const hostId = new URLSearchParams(location.search).get("host"); root.render( hostId ? : null );