Skip to content

Instantly share code, notes, and snippets.

@alex-okrushko
Last active April 3, 2019 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-okrushko/1a653611a83f6ee7583086ec754ce743 to your computer and use it in GitHub Desktop.
Save alex-okrushko/1a653611a83f6ee7583086ec754ce743 to your computer and use it in GitHub Desktop.
function reducer(state, action) {
switch(action.type) {
case login.type: { // <----- usage in reducer
...
}
}
}
@Effect
login$ = this.actions$.pipe(
ofType(login.type), // <----- usage in effect
...
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment