Skip to content

Instantly share code, notes, and snippets.

@mfp22
Last active March 23, 2021 07:40
Show Gist options
  • Save mfp22/f21e86b3cbc06dd981e5b47e7ad525b7 to your computer and use it in GitHub Desktop.
Save mfp22/f21e86b3cbc06dd981e5b47e7ad525b7 to your computer and use it in GitHub Desktop.
@Effect() saveData$ = this.actions$.pipe(
ofType('SAVE_DATA'),
switchMap(({payload}) => this.saveData(payload)),
map(res => ({type: "DATA_SAVED"})),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment