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

5 lines
181 B
TypeScript

import { ItemDetailListCellProps } from './types';
export const PlayCountColumn = ({ song }: ItemDetailListCellProps) =>
song.playCount ? String(song.playCount) : <>&nbsp;</>;