import React from 'react'; import PropTypes from 'prop-types'; import { FormattedMessage } from 'react-intl'; const TimelineHint = ({ resource, url }) => (

); TimelineHint.propTypes = { resource: PropTypes.node.isRequired, url: PropTypes.string.isRequired, }; export default TimelineHint;