Blame view

src/app/app.module.ts 437 Bytes
25ec1989   angular-cli   chore: initial co...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  import { BrowserModule } from '@angular/platform-browser';
  import { NgModule } from '@angular/core';
  import { FormsModule } from '@angular/forms';
  import { HttpModule } from '@angular/http';
  
  import { AppComponent } from './app.component';
  
  @NgModule({
    declarations: [
      AppComponent
    ],
    imports: [
      BrowserModule,
      FormsModule,
      HttpModule
    ],
    providers: [],
    bootstrap: [AppComponent]
  })
  export class AppModule { }