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

18 lines
839 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';
2020-05-12 19:16:23 +02:00
import { AddAnswerComponent } from './add-answer/add-answer.component';
import { AddCommentComponent } from './add-comment/add-comment.component';
import { AnswersComponent } from './answers/answers.component';
2020-04-22 12:56:18 +02:00
import { ParticipationRoutingModule } from './participation-routing.module';
import { ParticipationComponent } from './participation.component';
@NgModule({
2020-05-12 19:16:23 +02:00
declarations: [ParticipationComponent, AddCommentComponent, AnswersComponent, AddAnswerComponent],
2020-04-22 12:56:18 +02:00
imports: [CommonModule, ParticipationRoutingModule, SharedModule, TranslateModule.forChild({ extend: true })],
exports: [],
2020-04-22 12:56:18 +02:00
})
export class ParticipationModule {}