12 lines
377 B
TypeScript
12 lines
377 B
TypeScript
import { InfraMapComponent } from './infra-map.component';
|
|
import { InfraTreeComponent } from './infra-tree.component';
|
|
import { InfraHostOSComponent } from './infra-host-os.component';
|
|
import { InfraHostIPsComponent } from './infra-host-ips.component';
|
|
|
|
export const COMPONENTS = [
|
|
InfraMapComponent,
|
|
InfraTreeComponent,
|
|
InfraHostOSComponent,
|
|
InfraHostIPsComponent
|
|
];
|