import * as React from 'react'; import SentryAppComponentsStore from 'app/stores/sentryAppComponentsStore'; import {SentryAppComponent} from 'app/types'; import getDisplayName from 'app/utils/getDisplayName'; type InjectedAppComponentsProps = { components: SentryAppComponent[]; }; type State = { components: SentryAppComponent[]; }; type Options = { componentType?: 'stacktrace-link'; }; function withSentryAppComponents
( WrappedComponent: React.ComponentType
, {componentType}: Options = {} ) { class WithSentryAppComponents extends React.Component< Omit
& Partial