(playlist: any)
| 42 | } |
| 43 | |
| 44 | renderIcon(playlist: any) { |
| 45 | if (playlist.name === 'Liked') { |
| 46 | return <FontAwesomeIcon icon={['far', 'heart']} style={{ color: 'red' }} />; |
| 47 | } else { |
| 48 | return <FontAwesomeIcon icon={['fas', 'music']} />; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | render() { |
| 53 | let playlist = this.props.playlist |