import React from 'react'; import PropTypes from 'prop-types'; export default function HoveringURL(props) { return (
{props.targetURL}
); } HoveringURL.propTypes = { targetURL: PropTypes.string, };