完整的教务系统前端项目 - 包含所有修复和9月份数据

This commit is contained in:
KQL
2025-09-03 13:26:13 +08:00
commit 87b06d3176
270 changed files with 116169 additions and 0 deletions

11
src/main.jsx Normal file
View 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>
);