const ArtistInline = ({ artists, className, }: { artists: Artist[] className?: string }) => { if (!artists) return
return (
{artists.map((artist, index) => ( {artist.name} {index < artists.length - 1 ? ', ' : ''}  ))}
) } export default ArtistInline