SyntaxFix
Write A Post
Hire A Developer
Questions
The better way to do this is creating a fake array in component:
In Component:
fakeArray = new Array(12);
InTemplate:
<ng-container *ngFor = "let n of fakeArray"> MyCONTENT </ng-container>
Plunkr here