Created
November 11, 2015 07:14
-
-
Save ericf/7d14714f7dc1e7c4328b to your computer and use it in GitHub Desktop.
Revisions
-
ericf renamed this gist
Nov 11, 2015 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ericf created this gist
Nov 11, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ import React from 'react'; import { injectIntl, FormattedRelative, } from 'react-intl'; const TimeAgo = ({date, intl}) => { let year = intl.formatDate(date, {year: 'numeric'}); let month = intl.formatDate(date, {month: '2-digit'}); let day = intl.formatDate(date, {day: '2-digit'}); let formattedDate = intl.formatDate(date, { year : 'long', month: 'numeric', day : 'numeric' }); return ( <time datetime={`${year}-${month}-${day}`} title={formattedDate} > <FormattedRelative value={date} /> </time> ); }; export default injectIntl(TimeAgo);