interface ProfileItemProps { title: string value: string link?: string } export const ProfileItem = (props: ProfileItemProps): JSX.Element => { const { title, value, link } = props return (
  • {title} {link != null ? ( {value} ) : ( value )}
  • ) }