Skip to content

Commit 10e248e

Browse files
committed
Revert "Enable strict mode"
This reverts commit a6d136d.
1 parent 2510d2b commit 10e248e

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/index.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
import { StrictMode } from "react";
21
import ReactDOM from "react-dom";
32

43
import App from "./App";
54

65
const rootElement = document.getElementById("root");
7-
ReactDOM.render(
8-
<StrictMode>
9-
<App />
10-
</StrictMode>,
11-
rootElement
12-
);
6+
ReactDOM.render(<App />, rootElement);

0 commit comments

Comments
 (0)