import { NgModule } from '@angular/core'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { cmFormComponent } from './cmForm.component'; import { CommonModule } from '@angular/common'; @NgModule({ declarations: [ cmFormComponent, ], imports: [ CommonModule, NgZorroAntdModule ], exports: [cmFormComponent], }) export class cmFormModule { }