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

When will my account be deleted?

Your account will be deleted 24 hours after your request has been submitted.

Can I still write comments until my account is deleted?{' '}

No. Once youve requested account deletion, you can no longer write comments, reply to comments, or select reactions.

); DeleteMyAccountStep1.propTypes = { goToNextStep: PropTypes.func.isRequired, cancel: PropTypes.func.isRequired, }; export default DeleteMyAccountStep1;