@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
13 lines (9 loc) • 443 B
text/typescript
import { module } from 'angular';
import { react2angular } from 'react2angular';
import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary';
import { InsightLayout } from './InsightLayout';
export const INSIGHT_LAYOUT_COMPONENT = 'spinnaker.core.insight.insightLayout.component';
module(INSIGHT_LAYOUT_COMPONENT, []).component(
'insightLayout',
react2angular(withErrorBoundary(InsightLayout, 'insightLayout'), ['app']),
);