mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 07:01:58 +08:00
14 lines
392 B
JavaScript
14 lines
392 B
JavaScript
import React from "react";
|
|
import PropTypes from "prop-types";
|
|
import { FormattedDate } from "react-intl";
|
|
|
|
const ActivityDateElement = ({ date }) =>
|
|
<li className="data-element">
|
|
<FormattedDate value={date} day="2-digit" month="2-digit" year="numeric" />
|
|
</li>;
|
|
|
|
ActivityDateElement.propTypes = {
|
|
date: PropTypes.instanceOf(Date).isRequired
|
|
};
|
|
|
|
export default ActivityDateElement;
|