13 lines
282 B
JavaScript
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>
|
|
);
|
|
},
|
|
});
|