2019-11-08 17:47:19 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-12-11 15:51:03 +01:00
|
|
|
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';
|
2019-12-11 15:51:03 +01:00
|
|
|
import { FaqRoutingModule } from './faq.routing';
|
2019-11-08 17:47:19 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonUiModule,
|
|
|
|
FaqRoutingModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
FaqContentComponent,
|
|
|
|
FaqDialogComponent
|
|
|
|
],
|
|
|
|
entryComponents: [
|
|
|
|
FaqContentComponent,
|
|
|
|
FaqDialogComponent
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
FaqDialogComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class FaqModule { }
|