2022-05-05 22:30:30 +00:00
|
|
|
import { DateTimeTooltip } from './datetime-tooltip'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { fromNow } from 'web/lib/util/time'
|
2022-05-05 22:30:30 +00:00
|
|
|
import React from 'react'
|
|
|
|
|
|
|
|
export function RelativeTimestamp(props: { time: number }) {
|
|
|
|
const { time } = props
|
|
|
|
return (
|
|
|
|
<DateTimeTooltip time={time}>
|
|
|
|
<span className="ml-1 whitespace-nowrap text-gray-400">
|
|
|
|
{fromNow(time)}
|
|
|
|
</span>
|
|
|
|
</DateTimeTooltip>
|
|
|
|
)
|
|
|
|
}
|