argos/dmp-frontend/src/app/ui/sidebar/sidebar.module.ts

32 lines
979 B
TypeScript
Raw Normal View History

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';
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';
import { UserGuideModule } from '../user-guide/user-guide.module';
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,
ContactModule,
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 { }