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,7 @@
import { ItemDetailListCellProps } from './types';
export const ComposerColumn = ({ song }: ItemDetailListCellProps) => {
const composers = song.participants?.composer;
if (!composers?.length) return '—';
return composers.map((a) => a.name).join(', ');
};