22 lines
607 B
React
22 lines
607 B
React
|
import React, { Component } from "react";
|
||
|
import WebPlayerComponent from "../components/elements/WebPlayer";
|
||
|
|
||
|
|
||
|
export default class WebPlayer extends Component {
|
||
|
render () {
|
||
|
const webplayerProps = {
|
||
|
song: {
|
||
|
art: "http://albumartcollection.com/wp-content/uploads/2011/07/summer-album-art.jpg",
|
||
|
title: "Tel-ho",
|
||
|
artist: "Lapso Laps",
|
||
|
},
|
||
|
isPlaying: false,
|
||
|
isRandom: false,
|
||
|
isRepeat: true
|
||
|
};
|
||
|
return (
|
||
|
<WebPlayerComponent {...webplayerProps} />
|
||
|
);
|
||
|
}
|
||
|
}
|