UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

12 lines (9 loc) 412 B
import { module } from 'angular'; import { react2angular } from 'react2angular'; import { LabelComponent } from './LabelComponent'; import { withErrorBoundary } from './SpinErrorBoundary'; export const LABEL_COMPONENT = 'spinnaker.core.presentation.label.component'; module(LABEL_COMPONENT, []).component( 'labelComponent', react2angular(withErrorBoundary(LabelComponent, 'labelComponent'), ['stage']), );