diff --git a/src/components/PopupModal.jsx b/src/components/PopupModal.jsx index 4231e5a..9a6beda 100644 --- a/src/components/PopupModal.jsx +++ b/src/components/PopupModal.jsx @@ -1,12 +1,12 @@ import React from "react"; import { Modal } from "@geist-ui/core"; -function PopupModal({ visible, closeHandler }) { +function PopupModal({ visible, closeHandler, content, title }) { return ( - Modal + {title} -

Some content contained within the modal.

+ {content}
Close