box-ui-elements
Version:
Box UI Elements
14 lines • 349 B
JavaScript
import * as React from 'react';
import { FormattedDate } from 'react-intl';
function MessageFormattedDate({
date
}) {
return /*#__PURE__*/React.createElement(FormattedDate, {
day: "numeric",
month: "short",
value: date,
year: "numeric"
});
}
export default MessageFormattedDate;
//# sourceMappingURL=MessageFormattedDate.js.map