UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

13 lines (9 loc) 535 B
import { module } from 'angular'; import { react2angular } from 'react2angular'; import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary'; import { ExecutionDetailsSectionNav } from './ExecutionDetailsSectionNav'; export const EXECUTION_DETAILS_SECTION_NAV = 'spinnaker.core.pipeline.details.executionDetailsSectionNav'; module(EXECUTION_DETAILS_SECTION_NAV, []).component( 'executionDetailsSectionNav', react2angular(withErrorBoundary(ExecutionDetailsSectionNav, 'executionDetailsSectionNav'), ['sections']), );