Files
talk/client/coral-plugin-pubdate/PubDate.js
T
2016-11-01 13:50:49 -07:00

12 lines
255 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