mirror of
https://github.com/PlayEdu/backend
synced 2025-06-15 18:07:01 +08:00
33 lines
1.0 KiB
TypeScript
33 lines
1.0 KiB
TypeScript
import ReactDOM from "react-dom/client";
|
|
import "./assets/iconfont/iconfont.css";
|
|
import "./index.less";
|
|
import App from "./App";
|
|
import reportWebVitals from "./reportWebVitals";
|
|
import { BrowserRouter } from "react-router-dom";
|
|
import { Provider } from "react-redux";
|
|
import store from "./store";
|
|
import { ConfigProvider } from "antd";
|
|
import zhCN from "antd/locale/zh_CN";
|
|
import "dayjs/locale/zh-cn";
|
|
import AutoScorllTop from "./AutoTop";
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|
<Provider store={store}>
|
|
<ConfigProvider
|
|
locale={zhCN}
|
|
theme={{ token: { colorPrimary: "#ff4d4f" } }}
|
|
>
|
|
<BrowserRouter>
|
|
<AutoScorllTop>
|
|
<App />
|
|
</AutoScorllTop>
|
|
</BrowserRouter>
|
|
</ConfigProvider>
|
|
</Provider>
|
|
);
|
|
|
|
// If you want to start measuring performance in your app, pass a function
|
|
// to log results (for example: reportWebVitals(console.log))
|
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
reportWebVitals();
|