Last active
April 6, 2016 00:46
-
-
Save Nicktho/fb3a77ff84838f0d7827d381daba3c8c to your computer and use it in GitHub Desktop.
This file contains hidden or 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; | |
| return {} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment