Files
mattermostest/src/browser/components/HoveringURL.jsx
2017-05-24 21:52:57 +09:00

17 lines
299 B
JavaScript

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