Last active
April 6, 2016 01:15
-
-
Save Nicktho/70d3b057bb8b2a3f6033d502d27fa4b7 to your computer and use it in GitHub Desktop.
This file contains 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
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