import React, { Component } from "react"; import PropTypes from "prop-types"; import { formatTime } from "utils"; import { fallbackImage } from "constants.js"; import { connect } from "react-redux"; export default class SongItem extends Component { constructor(props) { super(props); } render() { const { song, callback } = this.props; return (