Created
January 25, 2021 23:32
-
-
Save DenisCangemi/13232e448b233dac55e919e919aebc5f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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