Last active
July 14, 2017 01:21
-
-
Save btg5679/7c3113a7b4901b4ff680f42813b1906e to your computer and use it in GitHub Desktop.
Redux Store
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
const store = createStore(r, { | |
user: { | |
name: 'wacko', | |
age: 48 | |
}, | |
comments: ['hi', 'hola'] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment