export function UserDisplay(props) { const {user, includeFullName} = props const nameDisplay = includeFullName === true ? `${user.first_name} ${user.last_name}