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