Betterzon/Frontend/src/app/app.module.ts
Patrick Müller 3ed77e0036 Merge remote-tracking branch 'origin/develop' into BETTERZON-35
# Conflicts:
#	Frontend/package-lock.json
#	Frontend/src/app/app.module.ts
#	Frontend/src/app/hello-world/hello-world.component.html
2020-12-02 19:06:45 +01:00

30 lines
903 B
TypeScript

import {BrowserModule} from '@angular/platform-browser';
import {HttpClientModule} from '@angular/common/http';
import {NgModule} from '@angular/core';
import {AppComponent} from './app.component';
import {AppRouting} from './app.routing';
import {ProductListComponent} from './product-list/product-list.component';
import { LandingpageComponent } from './landingpage/landingpage.component';
import { ProductDetailPageComponent } from './product-detail-page/product-detail-page.component';
import { FooterComponent } from './footer/footer.component';
@NgModule({
declarations: [
AppComponent,
ProductListComponent,
LandingpageComponent,
ProductDetailPageComponent,
FooterComponent
],
imports: [
BrowserModule,
AppRouting,
HttpClientModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}