webamp/js/components/MilkdropWindow/Background.js
2018-06-11 21:28:41 -07:00

26 lines
520 B
JavaScript

import React from "react";
const Background = props => {
const { innerRef, ...restProps } = props;
return (
<div
ref={innerRef}
className="draggable"
style={{
// This color will be used until Butterchurn is loaded
backgroundColor: "#000",
position: "absolute",
top: 0,
bottom: 0,
left: 0,
right: 0,
height: "100%",
width: "100%"
}}
tabIndex="0"
{...restProps}
/>
);
};
export default Background;