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

10 lines
277 B
TypeScript
Raw Normal View History

2018-04-16 08:28:39 +00:00
import { DetailComponent } from './detail/detail.component';
import { ListComponent } from './list/list.component';
2018-06-05 11:31:29 +00:00
// import { FilterComponent } from './list/filter/filter.component';
2018-04-06 11:02:18 +00:00
2018-04-16 08:28:39 +00:00
export const COMPONENTS = [
ListComponent,
2018-06-05 11:31:29 +00:00
// DetailComponent,
// FilterComponent
2018-04-16 08:28:39 +00:00
];