I'm trying to call a image from array of object, for this purpose I have written below code
product: any[] = [{
id: 121, name: "iphone", url: 'https://www.gstatic.com/webp/gallery3/1.png'
}] //I tried locale file path also
And calling this image like below
<div *ngFor="let list of product">
{{list.url}}
</div>
but it is not showing image rather than it showing only string. Could any one please let me know how to call a image which is defined in array