Last active
January 25, 2021 00:47
-
-
Save DenisCangemi/93c964b516d3426b4b4aa70d4c6bf097 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 [style.color]="getAvailabilityColor(product.status)">{{ product.status }}</span> | |
</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment