Last active
January 9, 2019 13:17
-
-
Save aigoncharov/ad00d14db3d549de23a63a71416cdf09 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
class CatsGetInit { | |
constructor() { | |
this.type = this.constructor.name | |
} | |
} | |
const reducerCats = (state, action) => { | |
switch (action.type) { | |
case CatsGetInit.name: | |
return { | |
...state, | |
loading: true, | |
} | |
//... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment