mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 05:18:14 +08:00
ab6c03c0cc
- Use JSX for templates - Docblock/comment everything - Mostly passes ESLint (still some work to do) - Lots of renaming, refactoring, etc. CSS hasn't been updated yet.
16 lines
335 B
JavaScript
16 lines
335 B
JavaScript
/**
|
|
* The `fullTime` helper displays a formatted time string wrapped in a <time>
|
|
* tag.
|
|
*
|
|
* @param {Date} time
|
|
* @return {Object}
|
|
*/
|
|
export default function fullTime(time) {
|
|
const mo = moment(time);
|
|
|
|
const datetime = mo.format();
|
|
const full = mo.format('LLLL');
|
|
|
|
return <time pubdate datetime={datetime}>{full}</time>;
|
|
}
|