14 lines
528 B
TypeScript
Raw Normal View History

2018-06-01 19:27:27 +09:00
import { InfraMapComponent } from './infra-map.component';
// import { InfraProbeSummaryComponent } from './infra-probe-summary.component';
2018-06-04 17:25:29 +09:00
import { InfraHostComponent } from './infra-host.component';
2018-06-01 19:27:27 +09:00
import { InfraHostSummaryComponent } from './infra-host-summary.component';
import { InfraServiceSummaryComponent } from './infra-service-summary.component';
2018-04-06 20:02:18 +09:00
2018-04-10 21:37:09 +09:00
export const COMPONENTS = [
2018-06-01 19:27:27 +09:00
InfraMapComponent,
// InfraProbeSummaryComponent,
2018-06-04 17:25:29 +09:00
InfraHostComponent,
2018-06-01 19:27:27 +09:00
InfraHostSummaryComponent,
2018-06-04 17:25:29 +09:00
InfraServiceSummaryComponent,
2018-04-10 21:37:09 +09:00
];