mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-01 00:13:05 +05:30
21 lines
523 B
TypeScript
21 lines
523 B
TypeScript
import React from 'react';
|
|
import { FormattedRelativeTime } from 'react-intl';
|
|
import { selectUnit } from '@formatjs/intl-utils';
|
|
|
|
function RelativeTime({ timestamp }: { timestamp: number }) {
|
|
const { unit, value }: { unit: any; value: number } = selectUnit(timestamp);
|
|
|
|
return (
|
|
<FormattedRelativeTime
|
|
value={value}
|
|
unit={unit}
|
|
numeric="auto"
|
|
updateIntervalInSeconds={
|
|
['seconds', 'minute', 'hour'].includes(unit) ? 1 : undefined
|
|
}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default RelativeTime;
|