Remove React.Strict mode

This commit is contained in:
Deluan 2021-06-25 14:08:00 -04:00 committed by Joe Stump
parent add980cd80
commit 03bbc00fe9
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

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.