member_webapp/@overflow/infra/component/index.ts

12 lines
377 B
TypeScript
Raw Normal View History

2018-06-01 10:27:27 +00:00
import { InfraMapComponent } from './infra-map.component';
2018-06-07 06:07:45 +00:00
import { InfraTreeComponent } from './infra-tree.component';
2018-06-14 06:45:39 +00:00
import { InfraHostOSComponent } from './infra-host-os.component';
import { InfraHostIPsComponent } from './infra-host-ips.component';
2018-04-06 11:02:18 +00:00
2018-04-10 12:37:09 +00:00
export const COMPONENTS = [
2018-06-01 10:27:27 +00:00
InfraMapComponent,
2018-06-14 06:45:39 +00:00
InfraTreeComponent,
InfraHostOSComponent,
InfraHostIPsComponent
2018-04-10 12:37:09 +00:00
];