import { Component } from '@angular/core';
import { HttpClient } from '@angular/common/http';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
photos : Object[] = [];
constructor(htpp:HttpClient) {
` aqui onde aparece o erro`
http
` aqui onde aparece o erro`
.get<Object[]>('http://localhost:3000/flavio/photos')
.subscribe(photos => this.photos = photos);
}
}