box-ui-elements-mlh
Version:
12 lines (8 loc) • 293 B
Flow
// @flow
import * as React from 'react';
import { FormattedDate } from 'react-intl';
type Props = {| date: Date |};
function MessageFormattedDate({ date }: Props) {
return <FormattedDate day="numeric" month="short" value={date} year="numeric" />;
}
export default MessageFormattedDate;