import classNames from 'classnames'; import type { HttpResponse } from '../lib/models'; import { Separator } from './core/Separator'; import { HStack } from './core/Stacks'; interface Props { response: HttpResponse; } export function ResponseHeaders({ response }: Props) { return (
{response.headers.map((h, i) => ( ))}
Other Info
); } function Row({ label, value, labelClassName, }: { label: string; value: string | number; labelClassName?: string; }) { return (
{label}
{value}
); }