mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
7 lines
257 B
TypeScript
7 lines
257 B
TypeScript
import { ItemDetailListCellProps } from './types';
|
|
|
|
import { formatDateAbsolute } from '/@/renderer/utils/format';
|
|
|
|
export const DateAddedColumn = ({ song }: ItemDetailListCellProps) =>
|
|
song.createdAt ? formatDateAbsolute(song.createdAt) : <> </>;
|