17 lines
432 B
TypeScript
17 lines
432 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { ActionsComponent } from './actions/actions.component';
|
|
import { ActionListComponent } from './action-list/action-list.component';
|
|
import { ActionItemEditComponent } from './action-item-edit/action-item-edit.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
declarations: [],
|
|
imports: [
|
|
ActionsComponent,
|
|
ActionListComponent,
|
|
ActionItemEditComponent,
|
|
]
|
|
})
|
|
export class ActionsModule { }
|