I want to create two tables, that contain the same array, but the second table contains the continuous items of the first table.
I am using Angular v.11 and Clarity for the projects. The table is build with:
<clr-dg-row *clrDgItems="let employee of employees" [clrDgItem]="employee">
<clr-dg-cell>{{ employee.employeeId }}</clr-dg-cell>
</clr-dg-row>
[Example] First table has 5 rows of different fruits, second array has 5 rows of the next fruits in the array.
You are then able to click next slide on the bottom of the table, to get 10 next fruits.
That said, fruits 11-20 are going to show for the user.
Picture down below: