1
0
mirror of synced 2024-11-15 02:17:36 +01:00
bemaniutils/bemani/frontend/static/components/rival.react.js
2019-12-08 21:43:49 +00:00

12 lines
317 B
JavaScript

/** @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>;
}
},
});