17 lines
276 B
JavaScript
17 lines
276 B
JavaScript
const React = require('react');
|
|
|
|
function HoveringURL(props) {
|
|
return (
|
|
<div style={props.style}>
|
|
{props.targetURL}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
HoveringURL.propTypes = {
|
|
style: React.PropTypes.object,
|
|
targetURL: React.PropTypes.string
|
|
};
|
|
|
|
module.exports = HoveringURL;
|