import { useState } from "react"; const ConfirmAlert = ({ title, caption, show, onClose, onSubmit, }) => { return ( <> {show && (
)}

{title}

); }; export default ConfirmAlert;