import React from 'react'; import PropTypes from 'prop-types'; import UserPicture from './UserPicture'; const UserInfo = (props) => { const { pageUser } = props; // do not display when the user does not exist if (pageUser == null) { return null; } return (