Files
feishin/src/renderer/components/item-list/item-detail-list/columns/year-column.tsx
T
2026-02-09 01:47:48 -08:00

5 lines
180 B
TypeScript

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