import { AlertDialog, AlertDialogBody, AlertDialogCloseButton, AlertDialogContent, AlertDialogFooter, AlertDialogOverlay, Button, useDisclosure } from "@chakra-ui/react"; import React, { useRef } from "react"; const CustomAlertDialog = ({ isOpen, onOpen, onClose, alertHandler, isLoading, message }) => { // const cancelRef = useRef(); return ( {message} ); }; export default CustomAlertDialog;