You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
316 B

  1. import {
  2. FormattedMessage,
  3. FormattedDate,
  4. FormattedRelative
  5. } from 'react-intl';
  6. const RelativeTimestamp = ({ timestamp }) => {
  7. return <FormattedRelative value={new Date(timestamp)} />;
  8. };
  9. RelativeTimestamp.propTypes = {
  10. timestamp: React.PropTypes.string.isRequired
  11. };
  12. export default RelativeTimestamp;