({ date })
| 8 | } |
| 9 | |
| 10 | export const TimelineDateRow: FC<TimelineDateRow> = ({ date }) => { |
| 11 | return ( |
| 12 | <TableRow> |
| 13 | <TableCell |
| 14 | className="py-2 px-8 bg-surface-secondary text-xs relative text-content-secondary capitalize" |
| 15 | title={formatDate(date)} |
| 16 | > |
| 17 | {createDisplayDate(date)} |
| 18 | </TableCell> |
| 19 | </TableRow> |
| 20 | ); |
| 21 | }; |
nothing calls this directly
no test coverage detected