webamp/js/components/Skin.jsx
Jordan Eldredge 2b6b7f30b5 Rename and move files for better clarity (#186)
* Rename and move files for better clarity

* Add sample mp3 file
2016-08-02 10:10:17 -07:00

11 lines
283 B
JavaScript

// Dynamically set the css background images for all the sprites
import React from 'react';
import {connect} from 'react-redux';
const Skin = (props) => {
return <style type='text/css'>
{props.skinCss}
</style>;
};
module.exports = connect((state) => state.display)(Skin);