mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-02 16:49:58 +02:00
7 lines
236 B
TypeScript
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) ?? <> </>;
|