UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

14 lines (9 loc) 505 B
import { module } from 'angular'; import { react2angular } from 'react2angular'; import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary'; import { ExecutionArtifactTab } from './react/ExecutionArtifactTab'; export const EXECUTION_ARTIFACT_TAB = 'spinnaker.core.artifact.artifactTab.component'; module(EXECUTION_ARTIFACT_TAB, []).component( 'executionArtifactTab', react2angular(withErrorBoundary(ExecutionArtifactTab, 'executionArtifactTab'), ['config', 'stage', 'execution']), );