2021-03-04 12:32:57 +01:00
|
|
|
import {NgModule} from "@angular/core";
|
|
|
|
import {CommonModule} from "@angular/common";
|
|
|
|
import {NotificationsSidebarComponent} from "./notifications-sidebar.component";
|
|
|
|
import {IconsModule} from "../../utils/icons/icons.module";
|
|
|
|
import {IconsService} from "../../utils/icons/icons.service";
|
|
|
|
import {arrow_left, bullet, close, mail} from "../../utils/icons/icons";
|
|
|
|
import {NotificationUserModule} from "../notification-user/notification-user.module";
|
|
|
|
import {NotifyFormModule} from "../notify-form/notify-form.module";
|
|
|
|
import {SafeHtmlPipeModule} from "../../utils/pipes/safeHTMLPipe.module";
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, IconsModule, NotificationUserModule, NotifyFormModule, SafeHtmlPipeModule],
|
|
|
|
declarations: [NotificationsSidebarComponent],
|
|
|
|
exports: [NotificationsSidebarComponent]
|
|
|
|
})
|
|
|
|
export class NotificationsSidebarModule {
|
2022-03-30 18:18:06 +02:00
|
|
|
constructor() {}
|
2021-03-04 12:32:57 +01:00
|
|
|
}
|