Blame view

src/app/app.module.ts 825 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 { AppRoutingModule } from './app-routing.module';

aeb06133   Angular CLI   chore: initial co...
8
import { AppComponent } from './app.component';
4fc21097   Arsisakarn Srilatanart   first commit
9
10
11
import { WizardBaseComponent } from './wizard-base/wizard-base.component';
import { ModalOneComponent } from './wizard-base/modal-one/modal-one.component';
import { ModalTwoComponent } from './wizard-base/modal-two/modal-two.component';
522b64d0   Arsisakarn Srilatanart   ทำให้ parent comp...
12
13

@NgModule({
2ce2db7f   Arsisakarn Srilatanart   แยก layout สำหรับ...
14
15
16
  declarations: [
    AppComponent,
    WizardBaseComponent,
aeb06133   Angular CLI   chore: initial co...
17
18
19
    ModalOneComponent,
    ModalTwoComponent
  ],
4fc21097   Arsisakarn Srilatanart   first commit
20
21
22
  imports: [
    BrowserModule,
    FormsModule,
522b64d0   Arsisakarn Srilatanart   ทำให้ parent comp...
23
    HttpModule,
2ce2db7f   Arsisakarn Srilatanart   แยก layout สำหรับ...
24
25
26
27
    AppRoutingModule
  ],
  providers: [],
  bootstrap: [AppComponent]
aeb06133   Angular CLI   chore: initial co...
28
29
})
export class AppModule { }
4fc21097   Arsisakarn Srilatanart   first commit

aeb06133   Angular CLI   chore: initial co...

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

aeb06133   Angular CLI   chore: initial co...