import type { Issue } from '../lib/types'; interface Props { issue: Issue; selected: boolean; onClick: () => void; } const SEVERITY_LABEL: Record = { critical: 'Critical', warning: 'Warning', notice: 'Notice', }; export default function IssueRow({ issue, selected, onClick }: Props) { return ( ); }