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';
|
|
|
|
|
|
|
|
@NgModule({
|
2019-03-08 10:43:54 +01:00
|
|
|
imports: [CommonModule, MotionsRoutingModule, SharedModule]
|
2018-07-23 16:42:17 +02:00
|
|
|
})
|
|
|
|
export class MotionsModule {}
|