Skip to content

Instantly share code, notes, and snippets.

@DenisCangemi
Created January 25, 2021 23:32
Show Gist options
  • Save DenisCangemi/13232e448b233dac55e919e919aebc5f to your computer and use it in GitHub Desktop.
Save DenisCangemi/13232e448b233dac55e919e919aebc5f to your computer and use it in GitHub Desktop.
<ul *ngFor="let product of products">
<li>
<p>{{ product.name }}</p>
<span
[class.text-available]="product.status === 'Available'"
[class.text-few-items-left]="product.status === 'Few Items Left''"
[class.text-out-of-stock]="product.status === 'Out of Stock'">
{{product.status}}
</span>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment