2018-07-23 16:42:17 +02:00
|
|
|
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 './motion-list/motion-list.component';
|
2018-08-09 16:03:24 +02:00
|
|
|
import { MotionDetailComponent } from './motion-detail/motion-detail.component';
|
2018-08-27 09:07:59 +02:00
|
|
|
import { CategoryListComponent } from './category-list/category-list.component';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, MotionsRoutingModule, SharedModule],
|
2018-08-27 09:07:59 +02:00
|
|
|
declarations: [MotionListComponent, MotionDetailComponent, CategoryListComponent]
|
2018-07-23 16:42:17 +02:00
|
|
|
})
|
|
|
|
export class MotionsModule {}
|