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