You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
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';
|
|
import { LoginComponent } from './auth/login/login.component';
|
|
import { SignUpComponent } from './auth/sign-up/sign-up.component';
|
|
import { PagenotfoundComponent } from './component/pagenotfound/pagenotfound.component';
|
|
import { NavbarComponent } from './component/navbar/navbar.component';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { HomeComponent } from './component/home/home.component';
|
|
import { AccountComponent } from './component/account/account.component';
|
|
import { CartComponent } from './component/cart/cart.component';
|
|
import { OrderComponent } from './component/order/order.component';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
ProductComponent,
|
|
CatalogComponent,
|
|
LoginComponent,
|
|
SignUpComponent,
|
|
PagenotfoundComponent,
|
|
NavbarComponent,
|
|
HomeComponent,
|
|
AccountComponent,
|
|
CartComponent,
|
|
OrderComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
HttpClientModule,
|
|
ReactiveFormsModule,
|
|
AppRoutingModule,
|
|
FormsModule,
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|