blob: 5891391b589836ab4ee1f75a5de12af415dab901 [file] [log] [blame]
Israel Lavi1994c982018-05-21 17:42:00 +03001import { NgModule } from "@angular/core";
2import { CommonModule } from "@angular/common";
3import { NotificationComponent } from "./notification/notification.component";
4import { NotificationContainerComponent } from "./container/notifcontainer.component";
5import { NotificationsService } from "./services/notifications.service";
6import { 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})
27export class NotificationModule {
28
29}