this is my code that I was stuck on:
<ul>
<li *ngFor="let item in items">{{item.Title}}</li>
</ul>
this is my code that I was stuck on:
<ul>
<li *ngFor="let item in items">{{item.Title}}</li>
</ul>
There is issue with the *ngFor
syntax. Do like this:
<ul>
<li *ngFor="let item of items">{{item.Title}}</li>
</ul>
in
is replaced with of