Created
March 31, 2019 12:13
-
-
Save madan712/e396e0011a1e3b7627605b6c7619e789 to your computer and use it in GitHub Desktop.
AppAction.js - Simple React + Redux example
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 increment() { | |
return {type: 'INCREMENT'}; | |
} | |
export function decrement() { | |
return {type: 'DECREMENT'}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment