2020-05-12 19:16:23 +02:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
|
|
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
|
|
import { ConsultationRoutingModule } from './consultation-routing.module';
|
|
|
|
import { ConsultationComponent } from './consultation.component';
|
|
|
|
import { PollResultsCompactComponent } from './poll-results-compact/poll-results-compact.component';
|
|
|
|
import { PollResultsDetailedComponent } from './poll-results-detailed/poll-results-detailed.component';
|
2021-04-28 14:07:33 +02:00
|
|
|
import { ChoiceButtonComponent } from '../../shared/components/choice-item/choice-button.component';
|
2020-05-12 19:16:23 +02:00
|
|
|
|
|
|
|
@NgModule({
|
2021-04-28 14:07:33 +02:00
|
|
|
declarations: [
|
|
|
|
ConsultationComponent,
|
|
|
|
PollResultsCompactComponent,
|
|
|
|
PollResultsDetailedComponent,
|
|
|
|
ChoiceButtonComponent,
|
|
|
|
],
|
2020-05-12 19:16:23 +02:00
|
|
|
imports: [CommonModule, ConsultationRoutingModule, SharedModule, TranslateModule.forChild({ extend: true })],
|
|
|
|
})
|
|
|
|
export class ConsultationModule {}
|