Skip to content

Instantly share code, notes, and snippets.

@IrakliJani
Created July 30, 2016 19:21
Show Gist options
  • Save IrakliJani/aab8c954c50841041e5dc170e6e0c572 to your computer and use it in GitHub Desktop.
Save IrakliJani/aab8c954c50841041e5dc170e6e0c572 to your computer and use it in GitHub Desktop.
Action aliases in reducers
function linksReducer (state = Map(), action) {
switch (action.type) {
case CLOSE_LINK:
case REMOVE_LINK:
return state.delete(action.id)
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment