import { h } from 'preact'; import PropTypes from 'prop-types'; /** * Component used to display user details in the Autocomplete dropdown * * @param {object} props * @param {string} props.name The user's name * @param {string} props.profile_image_90 The src of the user's profile image * @param {string} props.username The user's username */ export const UserListItemContent = ({ name, profile_image_90, username }) => (
{name}
{`@${username}`}