1
0
mirror of synced 2025-01-22 03:24:05 +01:00

12 lines
317 B
JavaScript
Raw Normal View History

/** @jsx React.DOM */
var Rival = React.createClass({
render: function() {
if (this.props.player.remote) {
return <span>{ this.props.player.name }</span>;
} else {
return <a href={Link.get('player', this.props.userid)}>{ this.props.player.name }</a>;
}
},
});