Files
shuffle-cracked/frontend/src/components/AlertPopup.js
T
2023-07-06 17:39:40 +02:00

20 lines
335 B
JavaScript
Executable File

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;