import { Link } from '@chakra-ui/react'; export interface ProjectIssueProps { id: number | string; title?: string; } export function ProjectIssue({ id, title }: ProjectIssueProps) { return ( {`#${id}`} {title && ` - ${title}`} ); }