angular-wizard-form
Version:
<!-- [](https://badge.fury.io/js/angular2-wizard) --> <!-- [](https://travis-ci.org/maiyaporn/angular2-wizard) --
29 lines (26 loc) • 636 B
text/typescript
import { NgModule, ModuleWithProviders } from '@angular/core';
import { CommonModule } from '@angular/common';
import { WizardComponent } from './src/wizard.component';
import { WizardStepComponent } from './src/wizard-step.component';
export * from './src/wizard.component';
export * from './src/wizard-step.component';
({
imports: [
CommonModule
],
declarations: [
WizardComponent,
WizardStepComponent
],
exports: [
WizardComponent,
WizardStepComponent
]
})
export class FormWizardModule {
static forRoot(): ModuleWithProviders {
return {
ngModule: FormWizardModule
};
}
}