Israel Lavi | 1994c98 | 2018-05-21 17:42:00 +0300 | [diff] [blame] | 1 | import { NgModule } from "@angular/core"; |
| 2 | import { CommonModule } from "@angular/common"; |
| 3 | import { NotificationComponent } from "./notification/notification.component"; |
| 4 | import { NotificationContainerComponent } from "./container/notifcontainer.component"; |
| 5 | import { NotificationsService } from "./services/notifications.service"; |
| 6 | import { CreateDynamicComponentService } from "../utils/create-dynamic-component.service"; |
| 7 | |
| 8 | |
| 9 | @NgModule({ |
| 10 | declarations: [ |
| 11 | NotificationComponent, |
| 12 | NotificationContainerComponent, |
| 13 | ], |
| 14 | exports: [ |
| 15 | NotificationComponent, |
| 16 | NotificationContainerComponent, |
| 17 | ], |
| 18 | entryComponents: [ |
| 19 | NotificationComponent, |
| 20 | NotificationContainerComponent, |
| 21 | ], |
| 22 | imports: [ |
| 23 | CommonModule |
| 24 | ], |
| 25 | providers: [NotificationsService, CreateDynamicComponentService] |
| 26 | }) |
| 27 | export class NotificationModule { |
| 28 | |
| 29 | } |