Rev 3610 | Ir a la última revisión | | Ultima modificación | Ver Log |
import { useContext } from 'react';
import { AlertModalContext } from '../providers';
export const useAlertModal = () => {
const { show, message, showAlert, closeAlert, onConfirm, onCancel } =
useContext(AlertModalContext);
return { show, message, showAlert, closeAlert, onConfirm, onCancel };
};