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