import { STATUS_COLORS, getStatusLabel } from '../../utils/statusHelpers' export default function Badge({ status }) { const c = STATUS_COLORS[status] || STATUS_COLORS.upcoming return ( {getStatusLabel(status)} ) }