12 lines
427 B
TypeScript
Raw Normal View History

2018-04-10 21:37:09 +09:00
import { MapComponent } from './map/map.component';
2018-05-24 19:50:43 +09:00
// import { ProbeSummaryComponent } from './probe-summary/probe-summary.component';
import { HostSummaryComponent } from './host-summary/host-summary.component';
import { ServiceSummaryComponent } from './service-summary/service-summary.component';
2018-04-06 20:02:18 +09:00
2018-04-10 21:37:09 +09:00
export const COMPONENTS = [
MapComponent,
2018-05-24 19:50:43 +09:00
// ProbeSummaryComponent,
HostSummaryComponent,
ServiceSummaryComponent
2018-04-10 21:37:09 +09:00
];