UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

12 lines (9 loc) 513 B
import { module } from 'angular'; import { react2angular } from 'react2angular'; import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary'; import { DeleteApplicationSection } from './DeleteApplicationSection'; export const DELETE_APPLICATION_SECTION = 'spinnaker.core.application.config.delete.directive'; module(DELETE_APPLICATION_SECTION, []).component( 'deleteApplicationSection', react2angular(withErrorBoundary(DeleteApplicationSection, 'deleteApplicationSection'), ['application']), );