import {FeatureFeedback} from 'sentry/components/featureFeedback'; import * as Layout from 'sentry/components/layouts/thirds'; import Link from 'sentry/components/links/link'; import {PageHeadingQuestionTooltip} from 'sentry/components/pageHeadingQuestionTooltip'; import {t} from 'sentry/locale'; import type {Organization} from 'sentry/types'; type Props = { activeTab: 'stats' | 'issues' | 'health'; organization: Organization; }; function StatsHeader({organization, activeTab}: Props) { return ( {t('Stats')} {activeTab !== 'stats' && ( )}
  • {t('Usage')}
  • {t('Issues')}
  • {t('Health')}
  • ); } export default StatsHeader;