import React from 'react';
import PropTypes from 'prop-types';
import cn from 'classnames';
import { Button, Icon } from 'plugin-api/beta/client/components/ui';
import styles from './DeleteMyAccountStep.css';
const DeleteMyAccountStep0 = props => (
You are attempting to delete your account. This means:
-
All of your comments are removed from this site
-
All of your comments are deleted from our database
-
Your username and email address are removed from our system
);
DeleteMyAccountStep0.propTypes = {
goToNextStep: PropTypes.func.isRequired,
cancel: PropTypes.func.isRequired,
};
export default DeleteMyAccountStep0;