Last active
April 3, 2019 12:06
-
-
Save alex-okrushko/1a653611a83f6ee7583086ec754ce743 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
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