2019-12-23 13:52:26 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
|
|
|
|
import {RouterModule} from "@angular/router";
|
|
|
|
|
|
|
|
import {SideBarComponent} from './sideBar.component';
|
2021-03-04 13:45:01 +01:00
|
|
|
import {UrlPrefixModule} from "../../../utils/pipes/url-prefix.module";
|
2022-03-02 22:48:21 +01:00
|
|
|
import {IconsModule} from "../../../utils/icons/icons.module";
|
2023-01-25 07:00:35 +01:00
|
|
|
import {SidebarContentComponent} from "./sidebar-content.component";
|
2019-12-23 13:52:26 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
2021-03-04 13:45:01 +01:00
|
|
|
RouterModule,
|
2022-03-02 22:48:21 +01:00
|
|
|
UrlPrefixModule,
|
|
|
|
IconsModule
|
2019-12-23 13:52:26 +01:00
|
|
|
],
|
|
|
|
declarations: [
|
2023-01-25 07:00:35 +01:00
|
|
|
SideBarComponent,
|
|
|
|
SidebarContentComponent
|
2019-12-23 13:52:26 +01:00
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
exports: [
|
2023-01-25 07:00:35 +01:00
|
|
|
SideBarComponent,
|
|
|
|
SidebarContentComponent
|
2019-12-23 13:52:26 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SideBarModule {
|
|
|
|
}
|