I want to display the below data from Firebase. When I'm doing {{ response | json }}. It will display following output.
<p> Response: {{ response | json }} </p>
<ul *ngFor="#value of response.data"> <li>Value: {{ value.duration }}</li> </ul>
This *ngFor did not work. Please help me.