14 lines
528 B
TypeScript
14 lines
528 B
TypeScript
import { InfraMapComponent } from './infra-map.component';
|
|
// import { InfraProbeSummaryComponent } from './infra-probe-summary.component';
|
|
import { InfraHostComponent } from './infra-host.component';
|
|
import { InfraHostSummaryComponent } from './infra-host-summary.component';
|
|
import { InfraServiceSummaryComponent } from './infra-service-summary.component';
|
|
|
|
export const COMPONENTS = [
|
|
InfraMapComponent,
|
|
// InfraProbeSummaryComponent,
|
|
InfraHostComponent,
|
|
InfraHostSummaryComponent,
|
|
InfraServiceSummaryComponent,
|
|
];
|