1
|
import { BrowserModule } from '@angular/platform-browser';
|
2
|
import { NgModule } from '@angular/core';
|
3
|
import { HttpClientModule } from '@angular/common/http';
|
4
|
|
5
|
import { AppRoutingModule } from './app-routing.module';
|
6
|
import { AppComponent } from './app.component';
|
7
|
import { FormsModule } from '@angular/forms';
|
8
|
|
9
|
@NgModule({
|
10
|
declarations: [
|
11
|
AppComponent
|
12
|
],
|
13
|
imports: [
|
14
|
BrowserModule,
|
15
|
AppRoutingModule,
|
16
|
FormsModule,
|
17
|
HttpClientModule
|
18
|
],
|
19
|
providers: [],
|
20
|
bootstrap: [AppComponent]
|
21
|
})
|
22
|
export class AppModule { }
|