1
0
mirror of synced 2025-01-11 19:22:08 +01:00

13 lines
282 B
JavaScript
Raw Normal View History

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