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

21 lines
542 B
TypeScript
Raw Normal View History

2019-11-08 17:47:19 +01:00
import { NgModule } from '@angular/core';
import { CommonUiModule } from '@common/ui/common-ui.module';
2019-11-08 17:47:19 +01:00
import { FaqDialogComponent } from './dialog/faq-dialog.component';
import { FaqContentComponent } from './faq-content/faq-content.component';
import { FaqRoutingModule } from './faq.routing';
2019-11-08 17:47:19 +01:00
@NgModule({
2023-10-05 15:39:17 +02:00
imports: [
CommonUiModule,
FaqRoutingModule
],
declarations: [
FaqContentComponent,
FaqDialogComponent
],
exports: [
FaqDialogComponent
]
2019-11-08 17:47:19 +01:00
})
export class FaqModule { }