import {Tooltip} from 'sentry/components/tooltip'; import {tct} from 'sentry/locale'; import {HTTP_RESPONSE_STATUS_CODES} from 'sentry/views/performance/http/data/definitions'; interface Props { code: number; } export function ResponseStatusCodeCell({code}: Props) { const explanation = HTTP_RESPONSE_STATUS_CODES[code.toString()]; return ( <Tooltip disabled={!code} isHoverable title={tct('Status Code [code] “[explanation]”', { code, explanation, })} > {code} </Tooltip> ); }