import {BrowserModule} from '@angular/platform-browser'; import {NgModule} from '@angular/core'; import {AppRoutingModule} from './app-routing.module'; import {AppComponent} from './app.component'; import {HeaderComponent} from './component/header/header.component'; import {OwnerComponent} from './component/owner/owner.component'; import {HttpClientModule} from '@angular/common/http'; @NgModule({ declarations: [ AppComponent, HeaderComponent, OwnerComponent ], imports: [ BrowserModule, AppRoutingModule, HttpClientModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }