add detail columns

This commit is contained in:
jeffvli
2026-02-08 20:06:55 -08:00
parent 3d67b02724
commit 5421182cc1
37 changed files with 326 additions and 54 deletions
@@ -0,0 +1,10 @@
import { ItemDetailListCellProps } from './types';
import { ItemImage } from '/@/renderer/components/item-image/item-image';
import { LibraryItem } from '/@/shared/types/domain-types';
export const ImageColumn = ({ song }: ItemDetailListCellProps) =>
song.imageId ? (
<ItemImage id={song.imageId} itemType={LibraryItem.SONG} type="itemCard" />
) : (
'—'
);