import React from "react"; type UserInfoProps = { handle: string; displayName: string; url?: string; }; export const UserInfo = ({ handle, displayName, url }: UserInfoProps) => (

{url ? ( {displayName} ) : ( <>{displayName} )}

@{handle}

); export default UserInfo;