Housekeeping. Refer to PR for specifics

This commit is contained in:
Miles
2020-07-21 22:47:01 -07:00
parent 04c626cfb5
commit 7d4c48b45c
45 changed files with 1428 additions and 1506 deletions
+26
View File
@@ -0,0 +1,26 @@
import React, { useEffect} from 'react';
const Popup = (props) => {
const { data } = props;
const popupStyle = {
position: "fixed",
width: "300px",
height: "50px",
backgroundColor: "black",
color: "white",
}
const popupData =
<div>
HEY
</div>
return (
<div>
{popupData}
</div>
)
}
export default Popup