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

31 lines
1.0 KiB
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({
2023-10-05 15:39:17 +02:00
imports: [
CommonUiModule,
CommonFormsModule,
GlossaryModule,
FaqModule,
RouterModule,
ContactModule,
UserGuideModule,
LanguageModule
],
declarations: [
SidebarComponent,
SidebarFooterComponent
],
exports: [SidebarComponent]
2019-04-24 11:26:53 +02:00
})
export class SidebarModule { }