13e1c01bb6
Adds a new ListView to show all amendments. The list view can be acessed from both the motion list and the motion detail list
10 lines
252 B
TypeScript
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 {}
|