Revert "Launch"

This commit is contained in:
Frikky
2021-11-14 23:36:13 +01:00
committed by GitHub
parent e7b3480e6c
commit 220f7308b6
63 changed files with 31323 additions and 42417 deletions
+20 -13
View File
@@ -1,19 +1,26 @@
import React, { useEffect } from "react";
import React, { useEffect} from 'react';
const Popup = (props) => {
const { data } = props;
const { data } = props;
const popupStyle = {
position: "fixed",
width: "300px",
height: "50px",
backgroundColor: "black",
color: "white",
};
const popupStyle = {
position: "fixed",
width: "300px",
height: "50px",
backgroundColor: "black",
color: "white",
}
const popupData = <div>HEY</div>;
const popupData =
<div>
HEY
</div>
return <div>{popupData}</div>;
};
return (
<div>
{popupData}
</div>
)
}
export default Popup;
export default Popup