import React, { Fragment } from 'react'; import PropTypes from 'prop-types'; import { UncontrolledTooltip } from 'reactstrap'; import { gettext } from '../utils/constants'; const propTypes = { repoID: PropTypes.string.isRequired, className: PropTypes.string }; class RepoMonitoredIcon extends React.Component { render() { const { repoID, className } = this.props; return ( {gettext('You are watching file changes of this library.')} ); } } RepoMonitoredIcon.propTypes = propTypes; export default RepoMonitoredIcon;