import React from 'react'; import cn from 'classnames'; import PropTypes from 'prop-types'; import { Button, Icon } from 'plugin-api/beta/client/components/ui'; import styles from './DeleteMyAccountStep.css'; const DeleteMyAccountFinalStep = props => (

Your request has been submitted and confirmation has been sent to the email address associated with your account.

Your account is scheduled to be deleted at: Account Deletion Date and Time

Changed your mind? Simply sign in to your account again before this time and click “ Cancel Account Deletion Request.

Tell us why. Wed like to know why you chose to delete your account. Send us feedback on our comment system by emailing.

Note: You will be immediately signed out of your account.
); DeleteMyAccountFinalStep.propTypes = { finish: PropTypes.func.isRequired, }; export default DeleteMyAccountFinalStep;