Album CSS and link to Spotify

This commit is contained in:
Rodrigo Pinto 2019-12-16 20:40:52 -05:00
commit 3b057fa31d
4 changed files with 40 additions and 23 deletions

View file

@ -30,7 +30,7 @@ function Artist({ props, callback }) {
<div className='artist' onClick={openAlbums}>
<div className='picture'>
{props.images.length > 0 && (
<img src={props.images[0].url} />
<img src={props.images[0].url} alt={props.name} />
)}
</div>