UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

15 lines (10 loc) 479 B
import { module } from 'angular'; import { react2angular } from 'react2angular'; import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary'; import { BannerContainer } from './BannerContainer'; export const CORE_BANNER_CONTAINER_COMPONENT = 'spinnaker.core.banner.container'; export const name = CORE_BANNER_CONTAINER_COMPONENT; module(name, []).component( 'bannerContainer', react2angular(withErrorBoundary(BannerContainer, 'bannerContainer'), ['app']), );