OpenSlides/client/src/app/site/assignments/assignments.module.ts

24 lines
1.1 KiB
TypeScript
Raw Normal View History

import { CommonModule } from '@angular/common';
2019-03-04 18:28:21 +01:00
import { NgModule } from '@angular/core';
2019-03-04 18:28:21 +01:00
import { AssignmentDetailComponent } from './components/assignment-detail/assignment-detail.component';
import { AssignmentListComponent } from './components/assignment-list/assignment-list.component';
import { AssignmentPollDetailComponent } from './components/assignment-poll-detail/assignment-poll-detail.component';
import { AssignmentPollVoteComponent } from './components/assignment-poll-vote/assignment-poll-vote.component';
import { AssignmentPollComponent } from './components/assignment-poll/assignment-poll.component';
import { AssignmentsRoutingModule } from './assignments-routing.module';
import { PollsModule } from '../polls/polls.module';
import { SharedModule } from '../../shared/shared.module';
@NgModule({
imports: [CommonModule, AssignmentsRoutingModule, SharedModule, PollsModule],
2019-03-04 18:28:21 +01:00
declarations: [
AssignmentDetailComponent,
AssignmentListComponent,
2019-03-04 18:28:21 +01:00
AssignmentPollComponent,
AssignmentPollDetailComponent,
AssignmentPollVoteComponent
]
})
export class AssignmentsModule {}