Created
November 27, 2015 11:52
-
-
Save karlbright/1e9e41a77825437e5541 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
{ type: 'FETCH_POSTS' } | |
{ type: 'FETCH_POSTS', status: 'error', error: 'Oops' } | |
{ type: 'FETCH_POSTS', status: 'success', response: { ... } } |
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
{ type: 'FETCH_POSTS_REQUEST' } | |
{ type: 'FETCH_POSTS_FAILURE', error: 'Oops' } | |
{ type: 'FETCH_POSTS_SUCCESS', response: { ... } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment