Skip to content

Instantly share code, notes, and snippets.

@aigoncharov
Last active January 9, 2019 13:17
Show Gist options
  • Save aigoncharov/ad00d14db3d549de23a63a71416cdf09 to your computer and use it in GitHub Desktop.
Save aigoncharov/ad00d14db3d549de23a63a71416cdf09 to your computer and use it in GitHub Desktop.
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