<tr *ngFor="let post of posts">
<td>{{post.kind}}</td>
<td>{{post.title}}</td>
<td>{{post.author}}</td>
<td>{{post.publisher}}</td>
<td>{{post.year}}</td>
<td>{{post.length}}</td>
</tr>
The problem is that posts
has over 200 objects in it, and I want to limit it to 10, then if I click next (or previous), it lists the next/previous 10. How should I do this?