Blame view

src/app/app.module.ts 437 Bytes
aeb06133   Angular CLI   chore: initial co...
1
2
3
4
5
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';

4fc21097   Arsisakarn Srilatanart   first commit
6
7
import { AppComponent } from './app.component';

aeb06133   Angular CLI   chore: initial co...
8
@NgModule({
4fc21097   Arsisakarn Srilatanart   first commit
9
10
11
  declarations: [
    AppComponent
  ],
522b64d0   Arsisakarn Srilatanart   ทำให้ parent comp...
12
13
  imports: [
    BrowserModule,
2ce2db7f   Arsisakarn Srilatanart   แยก layout สำหรับ...
14
15
16
    FormsModule,
    HttpModule
  ],
aeb06133   Angular CLI   chore: initial co...
17
18
19
  providers: [],
  bootstrap: [AppComponent]
})
4fc21097   Arsisakarn Srilatanart   first commit
20
export class AppModule { }
522b64d0   Arsisakarn Srilatanart   ทำให้ parent comp...

2ce2db7f   Arsisakarn Srilatanart   แยก layout สำหรับ...

aeb06133   Angular CLI   chore: initial co...

4fc21097   Arsisakarn Srilatanart   first commit

aeb06133   Angular CLI   chore: initial co...

522b64d0   Arsisakarn Srilatanart   ทำให้ parent comp...

aeb06133   Angular CLI   chore: initial co...