I would like to know how do I limit my NgFor to spend only 6 times ??
In my .TS I imported this module below ...
import { NgForOf } from '@angular/common';
I tried to use it this way, but it did not work ...
<div *ngFor="let concessionaria of concessionarias; index as i">
<vw-component-dealers [concessionaria]="concessionaria" ></vw-component-dealers>
</div>