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

14 lines
485 B
TypeScript
Raw Normal View History

2018-05-31 09:45:40 +00:00
import { ProbeListComponent } from './probe-list.component';
import { ProbeDetailComponent } from './probe-detail.component';
import { ProbeDownloadComponent } from './probe-download.component';
import { ProbeSelectorComponent } from './probe-selector.component';
import { ProbeSummaryComponent } from './probe-summary.component';
2018-04-06 11:02:18 +00:00
2018-04-06 13:02:46 +00:00
export const COMPONENTS = [
2018-05-18 08:30:20 +00:00
ProbeListComponent,
ProbeDetailComponent,
ProbeDownloadComponent,
2018-05-28 09:58:13 +00:00
ProbeSelectorComponent,
2018-05-30 09:39:26 +00:00
ProbeSummaryComponent
2018-04-06 13:02:46 +00:00
];