import SidebarMenuItem from 'sentry/components/sidebar/sidebarMenuItem'; import {t} from 'sentry/locale'; import type {Organization} from 'sentry/types/organization'; import withOrganization from 'sentry/utils/withOrganization'; import ZendeskLink from 'getsentry/components/zendeskLink'; type Props = { organization: Organization; }; function SupportLink({organization}: Props) { return ( ( onClick(e)}> {t('Contact Support')} )} /> ); } const SidebarHelpMenu = withOrganization(SupportLink); const hookSidebarHelpMenu = >(props: T) => ( ); export default hookSidebarHelpMenu;