ThierryDD
4/16/2018 - 10:09 AM

Carousel Component HTML - Iteration 1 - text

<ul>
  <li *ngFor="let album of albums">
    <h1>{{album.name | uppercase}}</h1>
    Category: {{album.category.name | uppercase}}<br />
    <span *ngFor="let photo of album.photos">{{photo}}<br /></span>
  </li>
</ul>