Skip to content

Instantly share code, notes, and snippets.

@vhnam
Created September 7, 2018 08:38
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 vhnam/69c90b4df305f2fcf7406066a6e43e0b to your computer and use it in GitHub Desktop.
Save vhnam/69c90b4df305f2fcf7406066a6e43e0b to your computer and use it in GitHub Desktop.
Redux __ Step 5
store.getState()
// Output: {articles: Array(0)}
store.subscribe(() => console.log('Look ma, Redux!!'))
store.dispatch( addArticle({ name: 'React Redux Tutorial for Beginners', id: 1 }) )
// Output: Look ma, Redux!!
store.getState()
// Output: {articles: Array(1)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment