@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
22 lines (17 loc) • 634 B
text/typescript
import { module } from 'angular';
import { react2angular } from 'react2angular';
import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary';
import { InstanceDetailsHeader } from './InstanceDetailsHeader';
export const CORE_INSTANCE_DETAILS_HEADER_COMPONENT = 'spinnaker.core.instance.details.header';
export const name = CORE_INSTANCE_DETAILS_HEADER_COMPONENT;
module(name, []).component(
'instanceDetailsHeader',
react2angular(withErrorBoundary(InstanceDetailsHeader, 'instanceDetailsHeader'), [
'cloudProvider',
'healthState',
'instanceId',
'loading',
'sshLink',
'standalone',
]),
);