Creacion de entitylist generica

This commit is contained in:
Daniel Cortes
2020-06-15 02:04:17 -04:00
parent 272ef85953
commit c09aab34ea
5 changed files with 256 additions and 71 deletions

View File

@@ -24,7 +24,7 @@ const SearchSong = (props) => {
<Link to={`/song/${song.id}`}>
<div className='description'>
<span>{song.title}</span>
<span className='small'>{song.artist[0].name}</span>
<span className='small'>{song.artist.name}</span>
</div>
</Link>
</li>