Skip to content

Instantly share code, notes, and snippets.

@Nicktho
Last active April 6, 2016 01:15
Show Gist options
  • Save Nicktho/70d3b057bb8b2a3f6033d502d27fa4b7 to your computer and use it in GitHub Desktop.
Save Nicktho/70d3b057bb8b2a3f6033d502d27fa4b7 to your computer and use it in GitHub Desktop.
export function createStore(reducer, initialState) {
let currentState = initialState;
function getState() {
return currentState;
}
return { getState };
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment