After receiving the JSON data response from the server, it looks like this:
{ "isValid":true, "count":3, "code":200, "data":[ { "name":"xxx", "department":"cse", }, { "name":"yyy", "department":"it", }] }
<div *ngFor="let x of hotels$.data | async">
<hotel-list [listData]="x"></hotel-list>
Even after attempting the above code, I am unable to retrieve any results from the loop.