import React, { Component, PropTypes } from "react"; import CSSModules from "react-css-modules"; import css from "../../styles/elements/WebPlayer.scss"; class WebPlayerCSS extends Component { componentDidMount () { // TODO: Should be in the container mounting WebPlayer $(".sidebar").css("bottom", "15vh"); $(".main-panel").css("margin-bottom", "15vh"); } render () { return (
{ /* Top Info */ }
Foobar
0:00
0:00
{ /* Controls */ }
{ /* Progress */ }
{ /* Playlist */ }
{ /* Volume */ }
); } } export default CSSModules(WebPlayerCSS, css);