-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.module.ts
30 lines (27 loc) · 868 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
26
27
28
29
30
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { HttpClientModule } from "@angular/common/http"
import { AppComponent } from './app.component';
import { HeaderComponent } from './components/header/header.component';
import { InputFormComponent } from './components/input-form/input-form.component';
import { SummaryComponent } from './components/summary/summary.component';
import { TotalFactsComponent } from './components/total-facts/total-facts.component';
@NgModule({
declarations: [
AppComponent,
HeaderComponent,
InputFormComponent,
SummaryComponent,
TotalFactsComponent
],
imports:
[
BrowserModule,
FormsModule,
HttpClientModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }