1
0
mirror of synced 2024-11-15 02:17:36 +01:00
bemaniutils/bemani/frontend/static/components/add.react.js

18 lines
459 B
JavaScript

/** @jsx React.DOM */
var Add = createReactClass({
render: function() {
return (
<Button
className="add"
style={this.props.style}
disabled={this.props.disabled}
onClick={function(event) {
this.props.onClick(event);
}.bind(this)}
title={this.props.title ? this.props.title : 'add'}
/>
);
},
});