An update which seems to have all the working components

This commit is contained in:
frikky
2020-07-27 12:05:18 +02:00
parent 1ec8bdebb6
commit b3c7c8c7e0
44 changed files with 402 additions and 499 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