Files
talk/client/coral-plugin-pubdate/PubDate.js
T
2016-11-08 17:16:24 -07:00

12 lines
263 B
JavaScript

import React from 'react';
import {I18n} from '../coral-framework';
const lang = new I18n();
const name = 'coral-plugin-pubdate';
const PubDate = ({created_at}) => <div className={`${name }-text`}>
{lang.timeago(created_at)}
</div>;
export default PubDate;