diff options
Diffstat (limited to 'vnext/src/components/Contact.js')
-rw-r--r-- | vnext/src/components/Contact.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/vnext/src/components/Contact.js b/vnext/src/components/Contact.js deleted file mode 100644 index 24aabe15..00000000 --- a/vnext/src/components/Contact.js +++ /dev/null @@ -1,21 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { UserType } from './Types'; - -import Avatar from './Avatar'; - -function Contact({ user, style, ...rest }) { - return ( - <Avatar user={user} link={`/pm/${user.uname}`} style={style}> - {user.unreadCount && <span className="badge">{user.unreadCount}</span>} - <div className="msg-ts">{user.lastMessageText}</div> - </Avatar> - ); -} - -export default React.memo(Contact); - -Contact.propTypes = { - user: UserType, - style: PropTypes.object -}; |