const ConfirmAlert = ({ title, caption, show, onClose, onSubmit, closeText, submitText }) => { return ( <> {show && (
)}

{title}

{caption}

); }; export default ConfirmAlert;