Created
May 30, 2020 14:58
-
-
Save raphaelmonte/69c854c7409475ff4a3b8a924d7b0609 to your computer and use it in GitHub Desktop.
Redux - Singleton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const store = createStore(combineReducers({ | |
| products: productsReducer, | |
| ... | |
| })); | |
| ReactDOM.render( | |
| <Provider store={store}> | |
| <Main /> | |
| </Provider>, | |
| document.getElementById('root') | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment