I have an *NgFor loop to write the rows of a table. But I would like to show only the first 10 results. Is there a way to break/stop the loop?
Somenthing like that:
<ng-container *ngFor="let row of rows">
<td>{{row.myCol1}}</td>
<td>{{row.myCol2}}</td>
<td>{{row.myCol2}}</td>
...
</ng-container>