import React from 'react'; export type Props = { url: string; id: number; subject: string; tracker: string; }; export const IssueHref = (props: Props): JSX.Element => { return ( {props.tracker} #{props.id} - {props.subject} ); };