import React from "react"; import PropTypes from "prop-types"; import { FormattedDate } from "react-intl"; const ActivityDateElement = ({ date }) => { return (
  • ); }; ActivityDateElement.propTypes = { } export default ActivityDateElement;