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