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
|
import { InvoiceComponent } from './invoice/invoice.component';
import { LayoutUiComponent } from './layouts/ui.component';
import { LayoutPrintComponent } from './layouts/print.component';
|
aeb06133
Angular CLI
chore: initial co...
|
17
18
19
|
@NgModule({
declarations: [
|
4fc21097
Arsisakarn Srilatanart
first commit
|
20
21
22
|
AppComponent,
WizardBaseComponent,
ModalOneComponent,
|
522b64d0
Arsisakarn Srilatanart
ทำให้ parent comp...
|
23
|
ModalTwoComponent,
|
2ce2db7f
Arsisakarn Srilatanart
แยก layout สำหรับ...
|
24
25
26
27
|
DummyComponent,
InvoiceComponent,
LayoutUiComponent,
LayoutPrintComponent,
|
aeb06133
Angular CLI
chore: initial co...
|
28
29
30
31
|
],
imports: [
BrowserModule,
FormsModule,
|
4fc21097
Arsisakarn Srilatanart
first commit
|
32
33
|
HttpModule,
AppRoutingModule
|
aeb06133
Angular CLI
chore: initial co...
|
34
|
],
|
522b64d0
Arsisakarn Srilatanart
ทำให้ parent comp...
|
35
|
providers: [ SharedServiceService ],
|
aeb06133
Angular CLI
chore: initial co...
|
36
37
38
|
bootstrap: [AppComponent]
})
export class AppModule { }
|