OpenSlides/client/src/app/site/motions/motions.module.ts
Sean Engelhardt 13e1c01bb6 Add amendment list
Adds a new ListView to show all amendments.
The list view can be acessed from both the motion list and the motion detail list
2019-08-16 09:27:41 +02:00

10 lines
252 B
TypeScript

import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { MotionsRoutingModule } from './motions-routing.module';
@NgModule({
imports: [CommonModule, MotionsRoutingModule]
})
export class MotionsModule {}