1
0
mirror of synced 2024-12-15 15:51:15 +01:00
bemaniutils/bemani/frontend/static/controllers/admin/gamesettings.react.js

22 lines
573 B
JavaScript
Raw Normal View History

/*** @jsx React.DOM */
var gamesettings = createReactClass({
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')
);