Bom dia!
tentando aplicar a diretiva *ngFor do Angular, meu aplicativo para de funcionar, a tela fica totalmente em branco.
Já revisei inúmeras vezes, não encontro o motivo!
O que pode estar havendo???
Códigos: app.component.ts
export class AppComponent {
photos = [
{
lstrImagePath:'https://images.immedia.com.br//16/16460_2_EL.jpg?c=201807161556', lstrImageDecription:'Pic1'
},
{
lstrImagePath:'http://i0.statig.com.br/social/compartilhe_ig_carros.png', lstrImageDecription:'Pic2'
}
];
}
Códigos: app.component.html
<ap-photo
*ngFor="let photo of photos"
[lstrImagePath]="photo.lstrImagePath"
[lstrImageDecription]="photo.lstrImageDecription">
</ap-photo>