obolus/www/components/humanize.jsx
2019-05-23 16:55:18 +02:00

15 lines
390 B
JavaScript

import React from 'react'
import { Duration } from 'uhrwerk'
export const timePassedSinceTimestamp = since => new Duration(Date.now() - since, 'milliseconds').humanize() + ' ago'
export const formatPrice = price => {
const [int, float] = price.toFixed(2).split('.')
return <span className={'mr-1'}>
<b>{int}
<small>,{float}</small>
</b>
</span>
}