1
0
mirror of synced 2025-01-31 12:13:49 +01:00

13 lines
282 B
JavaScript

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