mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-19 15:29:18 +00:00
# Conflicts: # Frontend/package-lock.json # Frontend/src/app/app.module.ts # Frontend/src/app/hello-world/hello-world.component.html
30 lines
903 B
TypeScript
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 {
|
|
}
|