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

{title}

{caption}

); }; export default ConfirmAlert;