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