1
0
mirror of synced 2024-12-01 00:57:18 +01:00
bemaniutils/bemani/frontend/static/components/edit.react.js

17 lines
424 B
JavaScript

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