import React from 'react'; import { Button} from 'UI'; import { confirmable } from 'react-confirm'; import { Modal } from 'UI' const Confirmation = ({ show, proceed, header = 'Confirm', confirmation = 'Are you sure?', cancelButton = "Cancel", confirmButton = "Proceed", }) => { return ( {header}

{confirmation}

) } export default confirmable(Confirmation);