// // A simple diagon that asks if you are sure. // import React from 'react' import {Button, ButtonToolbar, Modal} from 'react-bootstrap' import PropTypes from 'prop-types' const Confirmation = props => ( {props.title} ) Confirmation.defaultProps = { show: true, title: "Are you sure?", onCancel: null, onAccept: null, acceptStr: 'Accept', cancelStr: 'Cancel' } Confirmation.propTypes = { show: PropTypes.bool, className: PropTypes.string, onCancel: PropTypes.func.isRequired, onAccept: PropTypes.func.isRequired, acceptStr: PropTypes.string, cancelStr: PropTypes.string } export default Confirmation