@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
13 lines (9 loc) • 425 B
text/typescript
import { module } from 'angular';
import { react2angular } from 'react2angular';
import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary';
import { StatusGlyph } from './StatusGlyph';
export const STATUS_GLYPH_COMPONENT = 'spinnaker.core.task.statusGlyph.component';
module(STATUS_GLYPH_COMPONENT, []).component(
'statusGlyph',
react2angular(withErrorBoundary(StatusGlyph, 'statusGlyph'), ['item']),
);