Search⌘ K

Recommendations List

Explore how to build and integrate a Recommendations List feature module and component into the Angular event view page. Learn to update Angular modules and components, replace template comments with component selectors, and adjust tests to reflect these changes. Gain practical experience in implementing and testing UI features within an Angular application.

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
...