Skip to content

Instantly share code, notes, and snippets.

@DenisCangemi
Created January 25, 2021 23:00
Show Gist options
  • Save DenisCangemi/c73273e5cb9633c7e55232fe5f89cb9b to your computer and use it in GitHub Desktop.
Save DenisCangemi/c73273e5cb9633c7e55232fe5f89cb9b to your computer and use it in GitHub Desktop.
<ul *ngFor="let product of products">
<li>
<p>{{ product.name }}</p>
<span [ngClass]="{'text-available':product.status === 'Available',
'text-few-items-left':product.status === 'Few Items Left',
'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