UNPKG

angular-wizard-form

Version:

<!-- [![npm version](https://badge.fury.io/js/angular2-wizard.svg)](https://badge.fury.io/js/angular2-wizard) --> <!-- [![Build Status](https://travis-ci.org/maiyaporn/angular2-wizard.svg?branch=master)](https://travis-ci.org/maiyaporn/angular2-wizard) --

29 lines (26 loc) 636 B
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'; @NgModule({ imports: [ CommonModule ], declarations: [ WizardComponent, WizardStepComponent ], exports: [ WizardComponent, WizardStepComponent ] }) export class FormWizardModule { static forRoot(): ModuleWithProviders { return { ngModule: FormWizardModule }; } }