mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-24 02:36:00 +00:00
11 lines
283 B
JavaScript
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);
|