13 lines
441 B
TypeScript
13 lines
441 B
TypeScript
|
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';
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [CommonModule, MotionsRoutingModule, SharedModule],
|
||
|
declarations: [MotionListComponent]
|
||
|
})
|
||
|
export class MotionsModule {}
|