mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
5 lines
181 B
TypeScript
5 lines
181 B
TypeScript
import { ItemDetailListCellProps } from './types';
|
|
|
|
export const PlayCountColumn = ({ song }: ItemDetailListCellProps) =>
|
|
song.playCount ? String(song.playCount) : <> </>;
|