import type { Bugfix } from '../../services/DataFetcher.js' import { Badge } from '../Badge.jsx' import { Card } from '../Card.jsx' interface Props { fix: Bugfix } export function Issue({ fix }: Props) { return
{fix.summary}
{fix.categories.map(c => )}
}