Skip to content

Instantly share code, notes, and snippets.

@raphaelmonte
Created May 30, 2020 14:58
Show Gist options
  • Select an option

  • Save raphaelmonte/69c854c7409475ff4a3b8a924d7b0609 to your computer and use it in GitHub Desktop.

Select an option

Save raphaelmonte/69c854c7409475ff4a3b8a924d7b0609 to your computer and use it in GitHub Desktop.
Redux - Singleton
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