UNPKG

ng-ytl-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

15 lines (13 loc) 695 B
import { OverlayModule } from '@angular/cdk/overlay'; import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { NZ_NOTIFICATION_DEFAULT_CONFIG_PROVIDER } from './nz-notification-config'; import { NzNotificationContainerComponent } from './nz-notification-container.component'; import { NzNotificationComponent } from './nz-notification.component'; @NgModule({ imports: [ CommonModule, OverlayModule ], declarations: [ NzNotificationComponent, NzNotificationContainerComponent ], providers: [ NZ_NOTIFICATION_DEFAULT_CONFIG_PROVIDER ], entryComponents: [ NzNotificationContainerComponent ], }) export class NzNotificationModule { }