app.module.ts
999 Bytes
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';
@NgModule({
declarations: [
AppComponent,
WizardBaseComponent,
ModalOneComponent,
ModalTwoComponent,
DummyComponent
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
AppRoutingModule
],
providers: [ SharedServiceService ],
bootstrap: [AppComponent]
})
export class AppModule { }