Browse Source

remove strict mode since live use npm start

master
azri 4 weeks ago
parent
commit
d0a50ed194
1 changed files with 3 additions and 5 deletions
  1. 3
    5
      src/index.js

+ 3
- 5
src/index.js View File

13
 
13
 
14
 const root = ReactDOM.createRoot(document.getElementById('root'));
14
 const root = ReactDOM.createRoot(document.getElementById('root'));
15
 root.render(
15
 root.render(
16
-  <React.StrictMode>
17
-    <Provider store={store}>
18
-      <App />
19
-    </Provider>
20
-  </React.StrictMode>
16
+  <Provider store={store}>
17
+    <App />
18
+  </Provider>
21
 );
19
 );
22
 
20
 
23
 // // If you want to start measuring performance in your app, pass a function
21
 // // If you want to start measuring performance in your app, pass a function

Loading…
Cancel
Save