Skip to content

Instantly share code, notes, and snippets.

@roelofjan-elsinga
Created July 3, 2018 19:19
Show Gist options
  • Save roelofjan-elsinga/e1e7f8077d64879283163dac055d094c to your computer and use it in GitHub Desktop.
Save roelofjan-elsinga/e1e7f8077d64879283163dac055d094c to your computer and use it in GitHub Desktop.
Example store in Redux
import {createStore} from 'redux';
import {rootReducer} from "./reducers";
import {INITIAL_STATE} from "./reducers/initial-state";
export const store = createStore(rootReducer, INITIAL_STATE);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment