1
0
mirror of synced 2024-12-02 17:47:18 +01:00
bemaniutils/bemani/frontend/static/components/nav.react.js

27 lines
731 B
JavaScript

/** @jsx React.DOM */
var Nav = createReactClass({
render: function() {
var title = (
<>
{this.props.title}
{this.props.showAlert ?
<span className="alert">{ "\u26a0" }</span> :
null
}
</>
);
return (
<Button
className={classNames("nav", {"active": this.props.active}, this.props.title)}
disabled={this.props.disabled}
style={this.props.style}
onClick={function(event) {
this.props.onClick(event);
}.bind(this)}
title={title}
/>
);
},
});