Creating the Presentational Components
In this section, we will use ng generate component
to create the PostListComponent
and PostItemComponent
inside the PostsModule
. We will then add a UI to these components and use these components in our container components.
The PostListComponent
is responsible for taking in an array of posts using its Input, and it loops over each of these posts and invokes the PostItemComponent
.
The PostItemComponent
accepts a single post as its Input and displays that post.
Creating the PostListComponent
We will be using the ng generate
command to create our PostListComponent
. This is the component that will loop over our posts and will be called from our PostsComponent:
- Open the
src/app/posts/container/posts/posts.component.ts ...
Get Beginning Server-Side Application Development with Angular now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.