1
0
mirror of synced 2024-12-14 23:32:53 +01:00
bemaniutils/bemani/frontend/static/controllers/admin/gamesettings.react.js

22 lines
574 B
JavaScript

/*** @jsx React.DOM */
var gamesettings = React.createClass({
render: function() {
return (
<div>
<div className="section">
Game settings that will be used for any PCBID that does not belong to an arcade.
</div>
<div className="section">
<GameSettings game_settings={window.game_settings} />
</div>
</div>
);
},
});
ReactDOM.render(
React.createElement(gamesettings, null),
document.getElementById('content')
);