import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { NzBreadCrumbModule } from 'ng-zorro-antd/breadcrumb'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { ClipboardModule } from 'ngx-clipboard'; import { HighlightModule } from 'ngx-highlightjs'; import { FormsRoutingModule } from './forms-routing.module'; import { CommonFormComponent } from './common-form/common-form.component'; import { BcacFormModule } from 'bcac-lib/base-component/currency/bcac-form'; @NgModule({ declarations: [ CommonFormComponent ], imports: [ CommonModule, FormsRoutingModule, NzBreadCrumbModule, NgZorroAntdModule, ClipboardModule, HighlightModule, BcacFormModule ] }) export class FormsModule { }