bixi
Version:
企业级中后台前端解决方案
15 lines (12 loc) • 398 B
text/typescript
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { NzFormModule } from 'ng-zorro-antd/form';
import { BixiFormItemComponent } from './form-item.component';
const COMPONENTS = [BixiFormItemComponent];
({
imports: [CommonModule, NzFormModule],
declarations: [...COMPONENTS],
exports: [...COMPONENTS]
})
export class BixiFormModule {
}