import React, { Component } from 'react'; export default class Album extends Component { render() { const { id, artist, title, songs, year, img, purchased_on, } = this.props; const imagePath = `assets/covers/${img}`; const song = songs.join(', '); return (
cover
#{id+1}: {artist} - {song}, från "{title}" ({year})
✔️ {purchased_on}
) } }