showing results for - "can you wrap redux provider within react strictmode"
Ty
27 Apr 2020
1// React.StrictMode should wrap the whole application including the provider too. So Change your code like bellow:  
2  <React.StrictMode>
3    <Provider store={store}>
4      <App />
5    </Provider>
6  </React.StrictMode>,
7  document.getElementById('root')