import React from "react"; const Modal = () => { return ( <> {/* You can open the modal using document.getElementById('ID').showModal() method */}

Hello!

Click the button below to close

{/* if there is a button, it will close the modal */}
); }; export default Modal;