12 lines
421 B
TypeScript
Raw Normal View History

2018-04-10 21:37:09 +09:00
import { MapComponent } from './map/map.component';
2018-04-25 18:04:47 +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,
ProbeSummaryComponent,
HostSummaryComponent,
ServiceSummaryComponent
2018-04-10 21:37:09 +09:00
];