Recommendations List

Let's update the event module and component to add the recommendation list.

We'll cover the following...

With our new service ready, we can add our new feature module that displays a list of recommendations by creating a new module and component.

ng g module recommendations-list
ng g component recommendations-list
Terminal 1
Terminal
Loading...

The first command, ng g module recommendations-list, created one file:

CREATE
...