Initial open source commit

This commit is contained in:
frikky
2020-05-11 19:17:35 +02:00
commit f3587ac821
205 changed files with 63293 additions and 0 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