openreplay/frontend/app/components/Errors/Error/DateAgo.js
2021-05-01 15:12:01 +05:30

15 lines
No EOL
332 B
JavaScript

import { resentOrDate } from 'App/date';
function DateAgo({ className, title, timestamp }) {
return (
<div className={className}>
<h4 className="font-medium">{ title }</h4>
<span className="text-sm">
{ `${ resentOrDate(timestamp) }` }
</span>
</div>
);
}
DateAgo.displayName = "DateAgo";
export default DateAgo;