web-dave / ngrx-workshop

0 stars 1 forks source link

Refactor Effects #49

Open web-dave opened 2 years ago

web-dave commented 2 years ago
loadBooks$ = createEffect(() => this.actions$.pipe(
    ofType(LOADING_BOOKS),
    flatMap(() => this.service.getBooks()),
    map((data) => new LoadBooks(data))
  );