Skip to content

Instantly share code, notes, and snippets.

@roytouw7
Created December 10, 2020 19:13
Show Gist options
  • Save roytouw7/205aded586aab08ec6eb16b22734514f to your computer and use it in GitHub Desktop.
Save roytouw7/205aded586aab08ec6eb16b22734514f to your computer and use it in GitHub Desktop.
list.component.html
<div>
<div *ngFor="let product of products$ | async">
{{product.name}}
<div *ngFor="let price of product.price.data">
{{price.price}}
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment