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