UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

13 lines (9 loc) 468 B
import { module } from 'angular'; import { react2angular } from 'react2angular'; import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary'; import { SearchResult } from './SearchResult'; export const SEARCH_RESULT_COMPONENT = 'spinnaker.core.search.infrastructure.searchResult.component'; module(SEARCH_RESULT_COMPONENT, []).component( 'searchResult', react2angular(withErrorBoundary(SearchResult, 'searchResult'), ['displayName', 'account']), );