Spaces:
Running
Running
remove strict mode in dev
Browse files- client/src/main.jsx +1 -6
client/src/main.jsx
CHANGED
|
@@ -1,10 +1,5 @@
|
|
| 1 |
-
import { StrictMode } from "react";
|
| 2 |
import { createRoot } from "react-dom/client";
|
| 3 |
import "./index.css";
|
| 4 |
import App from "./App.jsx";
|
| 5 |
|
| 6 |
-
createRoot(document.getElementById("root")).render(
|
| 7 |
-
<StrictMode>
|
| 8 |
-
<App />
|
| 9 |
-
</StrictMode>
|
| 10 |
-
);
|
|
|
|
|
|
|
| 1 |
import { createRoot } from "react-dom/client";
|
| 2 |
import "./index.css";
|
| 3 |
import App from "./App.jsx";
|
| 4 |
|
| 5 |
+
createRoot(document.getElementById("root")).render(<App />);
|
|
|
|
|
|
|
|
|
|
|
|