1
0
mirror of synced 2024-12-12 22:41:07 +01:00
bemaniutils/bemani/frontend/static/components/toggle.react.js

17 lines
428 B
JavaScript
Raw Normal View History

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