import GuideAnchor from 'sentry/components/assistant/guideAnchor'; import {Button} from 'sentry/components/button'; import {IconBusiness} from 'sentry/icons'; import {t} from 'sentry/locale'; import type {Organization} from 'sentry/types/organization'; import {openUpsellModal} from 'getsentry/actionCreators/modal'; import trackGetsentryAnalytics from 'getsentry/utils/trackGetsentryAnalytics'; type Props = { organization: Organization; }; function OpenInDiscoverBtn(props: Props) { const {organization} = props; return ( ); } export default OpenInDiscoverBtn;