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