Skip to content

Instantly share code, notes, and snippets.

@Gbuomprisco
Created May 27, 2019 14:42
Show Gist options
  • Save Gbuomprisco/ff488be93aabfb2891097dba83e79686 to your computer and use it in GitHub Desktop.
Save Gbuomprisco/ff488be93aabfb2891097dba83e79686 to your computer and use it in GitHub Desktop.
<div class="price-container">
<div class="price"
*ngIf="(price$ | async) as price; else showEmptyState"
[ngClass]="{
'trend-up': (trend$ | async) === trends.Up,
'trend-down': (trend$ | async) === trends.Down
}"
>
${{ price }}
</div>
<ng-template #showEmptyState>
<mat-spinner></mat-spinner>
</ng-template>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment