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

5 lines
186 B
TypeScript

import { ItemDetailListCellProps } from './types';
export const ChannelsColumn = ({ song }: ItemDetailListCellProps) =>
song.channels != null ? String(song.channels) : <>&nbsp;</>;