member_webapp/@overflow/target/component/index.ts

10 lines
299 B
TypeScript
Raw Normal View History

2018-06-21 11:10:18 +00:00
import { TargetDetailComponent } from './target-detail.component';
import { TargetListComponent } from './target-list.component';
import {TargetFilterComponent} from './target-filter.component';
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
export const COMPONENTS = [
2018-06-21 11:10:18 +00:00
TargetListComponent,
TargetDetailComponent,
TargetFilterComponent
2018-04-16 08:28:39 +00:00
];