Files
feishin/src/renderer/components/item-list/item-detail-list/columns/last-played-column.tsx
T
2026-02-09 21:56:08 -08:00

7 lines
264 B
TypeScript

import { ItemDetailListCellProps } from './types';
import { formatDateRelative } from '/@/renderer/utils/format';
export const LastPlayedColumn = ({ song }: ItemDetailListCellProps) =>
song.lastPlayedAt ? formatDateRelative(song.lastPlayedAt) : <>&nbsp;</>;