webamp/js/components/AvsWindow/index.js
2018-01-11 20:13:12 -08:00

21 lines
429 B
JavaScript

import React from "react";
import GenWindow from "../GenWindow";
import "../../../css/gen-window.css";
const AvsWindow = () => (
<GenWindow title="Avs" close={() => {}} windowId="AVS_WINDOW">
<canvas
style={{
position: "absolute",
top: 0,
bottom: 0,
left: 0,
right: 0,
height: "100%",
width: "100%"
}}
/>
</GenWindow>
);
export default AvsWindow;