Files
teach_sys_Demo/src/main.jsx

12 lines
393 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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>
);