import React, { Component } from 'react'; export default class Modal extends Component { render() { const { id, artist, title, songs, year, img, description, handleOnClick, } = this.props; if (id === undefined) { return ''; } const imagePath = `assets/covers/${img}`; const song = songs.join(', '); return (
{description.split('\n\n').map(text => (