diff options
Diffstat (limited to 'src/angular/notifications/notification.module.ts')
-rw-r--r-- | src/angular/notifications/notification.module.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/angular/notifications/notification.module.ts b/src/angular/notifications/notification.module.ts index 5891391..4241b5d 100644 --- a/src/angular/notifications/notification.module.ts +++ b/src/angular/notifications/notification.module.ts @@ -4,18 +4,21 @@ 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"; - +import { InnerNotifContent } from "./notification-inner-content-example.component"; @NgModule({ declarations: [ + InnerNotifContent, NotificationComponent, NotificationContainerComponent, ], exports: [ + InnerNotifContent, NotificationComponent, NotificationContainerComponent, ], entryComponents: [ + InnerNotifContent, NotificationComponent, NotificationContainerComponent, ], |