```ts loadBooks$ = createEffect(() => this.actions$.pipe( ofType(LOADING_BOOKS), flatMap(() => this.service.getBooks()), map((data) => new LoadBooks(data)) ); ```