funky-framadate-front/src/app/features/participation/participation.module.ts

16 lines
711 B
TypeScript
Raw Normal View History

2020-04-22 12:56:18 +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 { ParticipationRoutingModule } from './participation-routing.module';
import { ParticipationComponent } from './participation.component';
2020-05-01 19:10:17 +02:00
import { PollComponent } from './poll/poll.component';
import { FeedbackComponent } from './feedback/feedback.component';
2020-04-22 12:56:18 +02:00
@NgModule({
declarations: [ParticipationComponent, PollComponent, FeedbackComponent],
2020-04-22 12:56:18 +02:00
imports: [CommonModule, ParticipationRoutingModule, SharedModule, TranslateModule.forChild({ extend: true })],
})
export class ParticipationModule {}