Issue #5: Creacion de boton AddToList

This commit is contained in:
Daniel Cortes
2020-06-19 05:56:55 -04:00
parent 5fea207523
commit ebda82edb3
6 changed files with 13 additions and 12 deletions

View File

@@ -23,7 +23,7 @@ const Song = (props) => {
subtitle = <span>[{toDuration(song.length)}]</span>
}
return <Entity title={song.title} subtitle={subtitle} buttonText='Agregar a mi lista'/>
return <Entity title={song.title} subtitle={subtitle}/>
}