import {FeatureFeedback} from 'sentry/components/featureFeedback'; import * as Layout from 'sentry/components/layouts/thirds'; import {PageHeadingQuestionTooltip} from 'sentry/components/pageHeadingQuestionTooltip'; import {TabList} from 'sentry/components/tabs'; import {t} from 'sentry/locale'; import type {Organization} from 'sentry/types/organization'; import normalizeUrl from 'sentry/utils/url/normalizeUrl'; 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;