aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/notifications/notification.module.ts
blob: 5891391b589836ab4ee1f75a5de12af415dab901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { NotificationComponent } from "./notification/notification.component";
import { NotificationContainerComponent } from "./container/notifcontainer.component";
import { NotificationsService } from "./services/notifications.service";
import { CreateDynamicComponentService } from "../utils/create-dynamic-component.service";


@NgModule({
    declarations: [
        NotificationComponent,
        NotificationContainerComponent,
    ],
    exports: [
        NotificationComponent,
        NotificationContainerComponent,
    ],
    entryComponents: [
        NotificationComponent,
        NotificationContainerComponent,
    ],
    imports: [
        CommonModule
    ],
    providers: [NotificationsService, CreateDynamicComponentService]
})
export class NotificationModule {

}