openreplay/frontend/app/components/Errors/Error/DateAgo.js
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

16 lines
377 B
JavaScript

import React from 'react';
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;