import React from 'react'; import PropTypes from 'prop-types'; import { Modal, Button } from 'react-bootstrap'; const propTypes = { delete: PropTypes.func.isRequired, onHide: PropTypes.func.isRequired, show: PropTypes.bool }; function DeleteModal(props) { const { show, onHide } = props; return ( Delete My Account

This will really delete all your data, including all your progress and account information.

We won't be able to recover any of it for you later, even if you change your mind.

If there's something we could do better, send us an email instead and we'll do our best:   team@freecodecamp.org


); } DeleteModal.displayName = 'DeleteModal'; DeleteModal.propTypes = propTypes; export default DeleteModal;