2019-04-24 11:26:53 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { CommonFormsModule } from '../../common/forms/common-forms.module';
|
|
|
|
import { CommonUiModule } from '../../common/ui/common-ui.module';
|
2019-09-05 12:29:59 +02:00
|
|
|
import { SidebarFooterComponent } from './sidebar-footer/sidebar-footer.component';
|
|
|
|
import { SidebarComponent } from './sidebar.component';
|
2019-11-08 17:47:19 +01:00
|
|
|
import { GlossaryModule } from '../glossary/glossary.module';
|
|
|
|
import { FaqModule } from '../faq/faq.module';
|
2019-11-11 11:42:55 +01:00
|
|
|
import { ContactModule } from '../contact/contact.module';
|
2019-04-24 11:26:53 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
|
|
|
CommonFormsModule,
|
2019-11-08 17:47:19 +01:00
|
|
|
GlossaryModule,
|
|
|
|
FaqModule,
|
|
|
|
RouterModule,
|
2019-11-11 11:42:55 +01:00
|
|
|
ContactModule
|
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 { }
|