mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
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(', ');
|
|
};
|