// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {FormattedMessage} from 'mm-intl';
import UserListRow from './user_list_row.jsx';
export default class UserList extends React.Component {
render() {
const users = this.props.users;
let content;
if (users.length > 0) {
content = users.map((user) => {
return (