Skip to content

Instantly share code, notes, and snippets.

@stevermeister
Created May 18, 2017 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevermeister/8501a3223d5d6bd70bb42ce2a088a3b4 to your computer and use it in GitHub Desktop.
Save stevermeister/8501a3223d5d6bd70bb42ce2a088a3b4 to your computer and use it in GitHub Desktop.
create-store.redux-mini.js
function createStore(reducer, initialState) {
var currentReducer = reducer;
var currentState = initialState;
return {
getState() {
return currentState;
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment