Summary: NgRx Effects

Let's review what we learned in this chapter.

In this chapter, we learned about the fundamentals of the @ngrx/effects library. We also learned how to define an effect to isolate the components from side effects.

What are effects?

In large applications, a component may need to handle multiple services that may become difficult to maintain over time. To overcome this problem, the @ngrx/effects ...