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

31 lines
1.7 KiB
TypeScript
Raw Normal View History

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MotionsRoutingModule } from './motions-routing.module';
import { SharedModule } from '../../shared/shared.module';
import { MotionListComponent } from './components/motion-list/motion-list.component';
import { MotionDetailComponent } from './components/motion-detail/motion-detail.component';
import { CategoryListComponent } from './components/category-list/category-list.component';
2018-10-01 15:36:16 +02:00
import { MotionCommentSectionListComponent } from './components/motion-comment-section-list/motion-comment-section-list.component';
2018-10-12 11:05:24 +02:00
import { StatuteParagraphListComponent } from './components/statute-paragraph-list/statute-paragraph-list.component';
2018-09-30 18:43:20 +02:00
import { MotionChangeRecommendationComponent } from './components/motion-change-recommendation/motion-change-recommendation.component';
import { MotionDetailOriginalChangeRecommendationsComponent } from './components/motion-detail-original-change-recommendations/motion-detail-original-change-recommendations.component';
import { MotionDetailDiffComponent } from './components/motion-detail-diff/motion-detail-diff.component';
@NgModule({
imports: [CommonModule, MotionsRoutingModule, SharedModule],
2018-10-12 11:05:24 +02:00
declarations: [
MotionListComponent,
MotionDetailComponent,
CategoryListComponent,
MotionCommentSectionListComponent,
2018-09-30 18:43:20 +02:00
StatuteParagraphListComponent,
MotionChangeRecommendationComponent,
MotionCommentSectionListComponent,
MotionDetailOriginalChangeRecommendationsComponent,
MotionDetailDiffComponent
],
entryComponents: [MotionChangeRecommendationComponent]
})
export class MotionsModule {}