Accompanied Code This chapter’s boilerplate code can be found in the chapter-06 branch.
In the previous chapter, our application grew into a functional application. We added more features, which resulted in more async operations. We use ngrx/store to dispatch events. We already saw that some actions might lead to more async actions, regardless of whether it’s store actions or service actions.
As it stands, our application might get bigger, and the youtube-videos component is already able to handle more responsibilities beyond receiving state and displaying it.
When one action leads ...