-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.module.ts
25 lines (23 loc) · 870 Bytes
/
app.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { ShowProductComponent } from './component/show-product/show-product.component';
import { HttpClientModule } from '@angular/common/http';
import { EditProductComponent } from './component/edit-product/edit-product.component';
import { AddProductComponent } from './component/add-product/add-product.component';
import { AppRoutingModule } from './app.routing';
import { ReactiveFormsModule } from '@angular/forms';
@NgModule({
declarations: [
AppComponent,
ShowProductComponent,
EditProductComponent,
AddProductComponent
],
imports: [
BrowserModule, HttpClientModule, ReactiveFormsModule, AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }