完整的教务系统前端项目 - 包含所有修复和9月份数据
This commit is contained in:
11
src/main.jsx
Normal file
11
src/main.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
// import { StrictMode } from "react"; // 重复请求只会在 开发环境 下发生,生产环境中StrictMode不会导致重复渲染
|
||||
import { createRoot } from "react-dom/client";
|
||||
import { Provider } from "react-redux";
|
||||
import store from "./store";
|
||||
import App from "./App.jsx";
|
||||
|
||||
createRoot(document.getElementById("root")).render(
|
||||
<Provider store={store}>
|
||||
<App />
|
||||
</Provider>
|
||||
);
|
||||
Reference in New Issue
Block a user