// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved. // See License.txt for license information. module.exports = React.createClass({ handleClick: function() { this.props.handleClick(this.props.username); }, render: function() { var icon; if (this.props.id != null) { icon = ; } else { icon = ; } return (
{icon}
@{this.props.username}{this.props.secondary_text}
); } });