Remove React.Strict mode

This commit is contained in:
Deluan 2021-06-25 14:08:00 -04:00
parent b684a47f80
commit 82105c3a16
1 changed files with 1 additions and 6 deletions

View File

@ -4,12 +4,7 @@ import './index.css'
import App from './App'
import * as serviceWorker from './serviceWorker'
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
)
ReactDOM.render(<App />, document.getElementById('root'))
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.