import { NgModule } from '@angular/core'; import {NgZorroAntdModule} from 'ng-zorro-antd'; import { FormComponent } from './form.component'; @NgModule({ declarations: [ FormComponent ], imports: [ NgZorroAntdModule ], exports: [FormComponent,NgZorroAntdModule] }) export class FormModule { }