app.module.ts
1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
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';
import { SharedServiceService } from './services/shared-service.service';
import { DummyComponent } from './dummy/dummy.component';
import { InvoiceComponent } from './invoice/invoice.component';
import { LayoutUiComponent } from './layouts/ui.component';
import { LayoutPrintComponent } from './layouts/print.component';
@NgModule({
declarations: [
AppComponent,
WizardBaseComponent,
ModalOneComponent,
ModalTwoComponent,
DummyComponent,
InvoiceComponent,
LayoutUiComponent,
LayoutPrintComponent,
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
AppRoutingModule
],
providers: [ SharedServiceService ],
bootstrap: [AppComponent]
})
export class AppModule { }