2019-04-24 11:26:53 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { RouterModule } from '@angular/router';
|
2019-12-11 15:51:03 +01:00
|
|
|
import { CommonFormsModule } from '@common/forms/common-forms.module';
|
|
|
|
import { CommonUiModule } from '@common/ui/common-ui.module';
|
|
|
|
import { ContactModule } from '../contact/contact.module';
|
|
|
|
import { FaqModule } from '../faq/faq.module';
|
|
|
|
import { GlossaryModule } from '../glossary/glossary.module';
|
2019-09-05 12:29:59 +02:00
|
|
|
import { SidebarFooterComponent } from './sidebar-footer/sidebar-footer.component';
|
|
|
|
import { SidebarComponent } from './sidebar.component';
|
2020-02-12 17:24:42 +01:00
|
|
|
import { UserGuideModule } from '../user-guide/user-guide.module';
|
2020-02-18 15:47:58 +01:00
|
|
|
import { LanguageModule } from '../language/language.module';
|
2019-04-24 11:26:53 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
|
|
|
CommonFormsModule,
|
2019-11-08 17:47:19 +01:00
|
|
|
GlossaryModule,
|
|
|
|
FaqModule,
|
|
|
|
RouterModule,
|
2020-02-12 17:24:42 +01:00
|
|
|
ContactModule,
|
2020-02-18 15:47:58 +01:00
|
|
|
UserGuideModule,
|
|
|
|
LanguageModule
|
2019-04-24 11:26:53 +02:00
|
|
|
],
|
|
|
|
declarations: [
|
2019-05-02 14:43:02 +02:00
|
|
|
SidebarComponent,
|
2019-11-08 17:47:19 +01:00
|
|
|
SidebarFooterComponent
|
2019-04-24 11:26:53 +02:00
|
|
|
],
|
2019-11-08 17:47:19 +01:00
|
|
|
entryComponents: [],
|
2019-04-24 11:26:53 +02:00
|
|
|
exports: [SidebarComponent]
|
|
|
|
})
|
|
|
|
export class SidebarModule { }
|