const React = require('react'); const PropTypes = require('prop-types'); function HoveringURL(props) { return (
{props.targetURL}
); } HoveringURL.propTypes = { targetURL: PropTypes.string }; module.exports = HoveringURL;