ng-ytl-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
14 lines (11 loc) • 407 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { NzStepComponent } from './nz-step.component';
import { NzStepsComponent } from './nz-steps.component';
({
imports : [ CommonModule ],
exports : [ NzStepsComponent, NzStepComponent ],
declarations: [ NzStepsComponent, NzStepComponent ],
})
export class NzStepsModule {
}