I tried with few techniques but still I can't figure out it so what is the best way to show this data using angular *ngFor loop
"data": {
"live": [
{
"name": "First",
"image": "XXXX",
"description": "Blockchain Technology",
"timezone": "UTC+0"
},
{
"name": "First",
"image": "XXXX",
"description": "Blockchain Technology",
"timezone": "UTC+0"
}
]
}
}
<div *ngFor="let h of data.live">{{h.name}}</div>