import { ItemDetailListCellProps } from './types'; interface DefaultColumnProps extends ItemDetailListCellProps { columnId: string; } export const DefaultColumn = ({ columnId, song }: DefaultColumnProps) => { const raw = (song as Record)[columnId]; if (raw === undefined || raw === null || typeof raw === 'object') return <> ; return String(raw); };