import React from 'react'; import { formatTime, formatDateTime } from '../../../helpers/helpers'; import { DEFAULT_SHORT_DATE_FORMAT_OPTIONS, DEFAULT_TIME_FORMAT, } from '../../../helpers/constants'; const getDateCell = (row, isDetailed) => { const { time } = row.original; if (!time) { return '–'; } const formattedTime = formatTime(time, DEFAULT_TIME_FORMAT); const formattedDate = formatDateTime(time, DEFAULT_SHORT_DATE_FORMAT_OPTIONS); return (
{formattedTime}
{isDetailed &&
{formattedDate}
}
); }; export default getDateCell;