I am trying to extract the URL and display it as an image:
This is how it appears in JSON:
https://i.sstatic.net/vpxPK.png
This is my HTML code:
<ul>
<li *ngFor="let product of store.Products">
<p>Product Image: {{ product.ProductImage }}</p>
<p>Product Price: {{ product.Price }}</p>
</li>
</ul>
Is there a way to achieve this using a pipe?