import {Tooltip} from 'sentry/components/tooltip'; import {tct} from 'sentry/locale'; import {HTTP_RESPONSE_STATUS_CODES} from 'sentry/views/insights/http/data/definitions'; interface Props { code: number; } export function ResponseStatusCodeCell({code}: Props) { const explanation = HTTP_RESPONSE_STATUS_CODES[code.toString()]; return ( {code} ); }