aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Contact.js
blob: 01dd1ae66b2838588b3ec2b5da5a3954ab43340c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React from 'react';
import { UserType } from './Types';

import Avatar from './Avatar';

export default class Contact extends React.Component {

    render() {
        const { user } = this.props;
        return (
            <React.Fragment>
                <Avatar user={user} link={`/pm/${user.uname}`} />                
                {user.uname }{ user.unreadCount && <span className="badge">{user.unreadCount}</span>}
            </React.Fragment>
        );
    }
}

Contact.propTypes = {
    user: UserType
};