UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

17 lines (13 loc) 493 B
import { module } from 'angular'; import { react2angular } from 'react2angular'; import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary'; import { HealthCounts } from './HealthCounts'; export const HEALTH_COUNTS_COMPONENT = 'spinnaker.core.healthCounts.component'; module(HEALTH_COUNTS_COMPONENT, []).component( 'healthCounts', react2angular(withErrorBoundary(HealthCounts, 'healthCounts'), [ 'container', 'additionalLegendText', 'legendPlacement', ]), );