diff --git a/src/components/PopOver.jsx b/src/components/PopOver.jsx
index 51dcb0a..64c5d33 100644
--- a/src/components/PopOver.jsx
+++ b/src/components/PopOver.jsx
@@ -1,35 +1,35 @@
-// import { Modal, ModalCloseButton, ModalContent, ModalOverlay } from "@chakra-ui/react";
+import { Modal, ModalCloseButton, ModalContent, ModalOverlay } from "@chakra-ui/react";
-// function PopOver({ children, isOpen, triggerClose, showCloseBtn }) {
-// return (
-//
-//
-//
-// {showCloseBtn && (
-//
-// )}
-// {children}
-//
-//
-// );
-// }
+function PopOver({ children, isOpen, triggerClose, showCloseBtn }) {
+ return (
+
+
+
+ {showCloseBtn && (
+
+ )}
+ {children}
+
+
+ );
+}
-// export default PopOver;
+export default PopOver;