Created
October 26, 2017 01:42
-
-
Save osanyin/193b1e350e3eba74bf7058b8753f0ebc 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 increment(number) { | |
| return { | |
| type: 'INCREMENT', | |
| number | |
| } | |
| } | |
| export function decrement(number) { | |
| return { | |
| type: 'DECREMENT', | |
| number | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment