import {Button} from 'sentry/components/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 ( ); } export default withOrganization(OnboardingWizardHelp);