'use client'; import { BUG_STATUS_LABEL, BUG_STATUS_COLOR } from '@/lib/bug'; import type { BugStatus } from '@/lib/bug'; export function BugStatusBadge({ status }: { status: BugStatus }) { return ( {BUG_STATUS_LABEL[status]} ); }