blob: 5891391b589836ab4ee1f75a5de12af415dab901 [file] [log] [blame]
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 {
}