Blame view

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