Created
December 8, 2017 11:46
-
-
Save vzaidman/d54aee6e7ab81ad2ddc423007fc7039a 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
// replacing constants | |
import {fetchTodos} from './actions' | |
export default function(state=..., action){ | |
case fetchTodos.TYPE: | |
return ... | |
case fetchTodos.success.TYPE: | |
return ... | |
casse fetchTodos.failure.TYPE: | |
return ... | |
// used less, but are available... | |
case fetchTodos.progress.TYPE: | |
return ...... | |
case fetchTodos.cancel.TYPE: | |
return ... | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment