import React from 'react'; import { Link } from 'react-router'; type Artist = { id: number; name: string; }; type ArtistLinksProps = { artists: Artist[]; }; const ArtistLinks: React.FC = ({ artists }) => { return ( <> {artists.map((artist, index) => ( {artist.name} {index < artists.length - 1 ? ', ' : ''} ))} ); }; export default ArtistLinks;