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

28 lines
823 B
TypeScript

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 { SidebarFooterComponent } from './sidebar-footer/sidebar-footer.component';
import { SidebarComponent } from './sidebar.component';
import { GlossaryModule } from '../glossary/glossary.module';
import { FaqModule } from '../faq/faq.module';
import { ContactModule } from '../contact/contact.module';
@NgModule({
imports: [
CommonUiModule,
CommonFormsModule,
GlossaryModule,
FaqModule,
RouterModule,
ContactModule
],
declarations: [
SidebarComponent,
SidebarFooterComponent
],
entryComponents: [],
exports: [SidebarComponent]
})
export class SidebarModule { }