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

13 lines
283 B
JavaScript
Raw Normal View History

/** @jsx React.DOM */
var Tip = React.createClass({
render: function() {
return (
<div className="tooltip">
{this.props.children}
<span className="tooltiptext">{this.props.text}</span>
</div>
);
},
});