// NPM import import React, { Component, PropTypes } from "react"; import Immutable from "immutable"; // Other components import { SongsTable } from "./Songs"; /** * An entire album row containing art and tracks table. */ export default class Playlist extends Component { render() { const currentSongSongsTableProps = { playAction: this.props.playAction, playNextAction: this.props.playNextAction, songs: this.props.songs.slice(this.props.currentIndex, this.props.currentIndex + 1), }; const fullPlaylistSongsTableProps = { playAction: this.props.playAction, playNextAction: this.props.playNextAction, songs: this.props.songs, }; return (