Files
feishin/src/renderer/components/item-list/item-detail-list/columns/path-column.tsx
T
2026-06-19 22:07:42 -07:00

7 lines
236 B
TypeScript

import { ItemDetailListCellProps } from './types';
import { resolveSongPath } from '/@/renderer/utils/resolve-song-path';
export const PathColumn = ({ song }: ItemDetailListCellProps) =>
resolveSongPath(song.path) ?? <>&nbsp;</>;