import FeatureBadge from 'sentry/components/featureBadge'; import ReplayCountBadge from 'sentry/components/replays/replayCountBadge'; import ReplaysFeatureBadge from 'sentry/components/replays/replaysFeatureBadge'; import {TabList} from 'sentry/components/tabs'; import {t} from 'sentry/locale'; import Tab from './tabs'; type Props = { hasAnomalyDetection: boolean; hasProfiling: boolean; hasSessionReplay: boolean; renderWebVitals: boolean; replaysCount: undefined | number; }; function TransactionSummaryTabs({ hasAnomalyDetection, hasProfiling, hasSessionReplay, renderWebVitals, replaysCount, }: Props) { return ( {t('Overview')} {t('All Events')} {t('Tags')} {t('Spans')} ); } export default TransactionSummaryTabs;