aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/notifications/notification.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/angular/notifications/notification.module.ts')
-rw-r--r--src/angular/notifications/notification.module.ts29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/angular/notifications/notification.module.ts b/src/angular/notifications/notification.module.ts
new file mode 100644
index 0000000..5891391
--- /dev/null
+++ b/src/angular/notifications/notification.module.ts
@@ -0,0 +1,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 {
+
+}