import {LinkButton} from 'sentry/components/core/button'; import {t} from 'sentry/locale'; import type {Organization} from 'sentry/types/organization'; import withOrganization from 'sentry/utils/withOrganization'; type Props = { organization: Organization; }; function OnboardingWizardHelp({organization}: Props) { return ( {t('Get support')} ); } export default withOrganization(OnboardingWizardHelp);