import React from 'react'; import { AlertDialog, AlertDialogBody, AlertDialogContent, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, Button, Center, } from '@native-base/v3'; export default function () { const [isOpen, setIsOpen] = React.useState(false); const onClose = () => setIsOpen(false); const cancelRef = React.useRef(); return (
Delete Customer Are you sure? You can't undo this action afterwards.
); }