argos/dmp-frontend/src/app/library/notification/notification.module.ts

27 lines
776 B
TypeScript

import { NgModule } from '@angular/core';
import { NotificationComponent } from '@app/library/notification/notification.component';
import { PopupNotificationDialogComponent } from '@app/library/notification/popup/popup-notification.component';
import { SnackBarNotificationComponent } from '@app/library/notification/snack-bar/snack-bar-notification.component';
import { CommonUiModule } from '@common/ui/common-ui.module';
@NgModule({
imports: [
CommonUiModule
],
declarations: [
NotificationComponent,
SnackBarNotificationComponent,
PopupNotificationDialogComponent,
],
exports: [
NotificationComponent
],
entryComponents: [
SnackBarNotificationComponent,
PopupNotificationDialogComponent,
]
})
export class NotificationModule {
constructor() { }
}