UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

14 lines (9 loc) 479 B
import { module } from 'angular'; import { react2angular } from 'react2angular'; import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary'; import SlackChannelSelector from './SlackChannelSelector'; export const SLACK_COMPONENT = 'spinnaker.application.slackChannelSelector.component'; module(SLACK_COMPONENT, []).component( 'slackChannelSelector', react2angular(withErrorBoundary(SlackChannelSelector, 'slackChannelSelector'), ['channel', 'callback']), );