mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-23 12:27:59 +02:00
7 lines
264 B
TypeScript
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) : <> </>;
|