mirror of
https://github.com/wassname/talk.git
synced 2026-07-19 11:28:50 +08:00
31 lines
992 B
JavaScript
31 lines
992 B
JavaScript
import React from 'react';
|
|
import cn from 'classnames';
|
|
import { Button } from 'plugin-api/beta/client/components/ui';
|
|
import styles from './DeleteMyAccountStep.css';
|
|
|
|
const DeleteMyAccountStep1 = props => (
|
|
<div className={styles.step}>
|
|
<h4>When will my account be deleted?</h4>
|
|
<p className={styles.description}>
|
|
Your account will be deleted 24 hours after your request has been
|
|
submitted.
|
|
</p>
|
|
<h4>Can I still write comments until my account is deleted? </h4>
|
|
<p className={styles.description}>
|
|
No. Once youve requested account deletion, you can no longer write
|
|
comments, reply to comments, or select reactions.
|
|
</p>
|
|
<div className={cn(styles.actions)}>
|
|
<Button className={cn(styles.button, styles.cancel)}>Cancel</Button>
|
|
<Button
|
|
className={cn(styles.button, styles.proceed)}
|
|
onClick={props.goToNextStep}
|
|
>
|
|
Proceed
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
|
|
export default DeleteMyAccountStep1;
|