Blame view

src/app/app.module.ts 999 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
import { SharedServiceService } from './services/shared-service.service';
import { DummyComponent } from './dummy/dummy.component';
2ce2db7f   Arsisakarn Srilatanart   แยก layout สำหรับ...
14
15
16

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

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

aeb06133   Angular CLI   chore: initial co...