import React from 'react'; import PropTypes from 'prop-types'; import { userPageRoot } from '@commons/util/path-utils'; import UserPicture from '../User/UserPicture'; const AuthorInfo = (props) => { const { mode, user, date } = props; const infoLabel = mode === 'create' ? 'Created by' : 'Updated by'; const userLabel = user != null ? {user.name} : Unknown; return (