2018-04-10 10:20:44 +00:00
|
|
|
import { SettingComponent } from './setting/setting.component';
|
2018-05-03 11:45:49 +00:00
|
|
|
import { ProbeSelectorComponent } from './setting/probe-selector/probe-selector.component';
|
|
|
|
import { ServiceSelectorComponent } from './setting/filter/service-selector/service-selector.component';
|
|
|
|
import { FilterComponent } from './setting/filter/filter.component';
|
|
|
|
import { ResultComponent } from './setting/result/result.component';
|
2018-05-10 12:21:20 +00:00
|
|
|
import { FilterSummaryComponent } from './setting/filter-summary/filter-summary.component';
|
2018-05-18 06:57:43 +00:00
|
|
|
import { DiscoveryComponent } from './discovery/discovery.component';
|
|
|
|
import { SearchConfigComponent } from './discovery/search-config/search-config.component';
|
|
|
|
import { SearchFilterComponent } from './discovery/search-filter/search-filter.component';
|
|
|
|
import { SearchResultComponent } from './discovery/search-result/search-result.component';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-10 10:20:44 +00:00
|
|
|
export const COMPONENTS = [
|
|
|
|
SettingComponent,
|
2018-05-03 11:45:49 +00:00
|
|
|
FilterComponent,
|
|
|
|
ServiceSelectorComponent,
|
|
|
|
ProbeSelectorComponent,
|
2018-05-10 12:21:20 +00:00
|
|
|
ResultComponent,
|
2018-05-18 06:57:43 +00:00
|
|
|
FilterSummaryComponent,
|
|
|
|
DiscoveryComponent,
|
|
|
|
SearchConfigComponent,
|
|
|
|
SearchFilterComponent,
|
|
|
|
SearchResultComponent
|
2018-04-10 10:20:44 +00:00
|
|
|
];
|