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

24 lines
720 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 { SidebarComponent } from './sidebar.component';
import { SidebarFooterComponent } from './sidebar-footer/sidebar-footer.component';
import { ContactDialogModule } from '../../library/contact-dialog/contact-dialog.module';
@NgModule({
imports: [
CommonUiModule,
CommonFormsModule,
ContactDialogModule,
RouterModule
],
declarations: [
SidebarComponent,
SidebarFooterComponent
],
entryComponents: [],
exports: [SidebarComponent]
})
export class SidebarModule { }