Files
shuffle-cracked/frontend/src/components/AlertPopup.js
T
2021-11-14 23:50:59 +01:00

20 lines
335 B
JavaScript

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;