mirror of
https://github.com/wassname/talk.git
synced 2026-07-04 13:41:07 +08:00
styles wip
This commit is contained in:
@@ -3,7 +3,7 @@ import cn from 'classnames';
|
||||
import { Button, Icon } from 'plugin-api/beta/client/components/ui';
|
||||
import styles from './DeleteMyAccountStep.css';
|
||||
|
||||
const DeleteMyAccountStep0 = () => (
|
||||
const DeleteMyAccountStep0 = props => (
|
||||
<div className={styles.step}>
|
||||
<p className={styles.description}>
|
||||
You are attempting to delete your account. This means:
|
||||
@@ -32,7 +32,7 @@ const DeleteMyAccountStep0 = () => (
|
||||
<Button className={cn(styles.button, styles.cancel)}>Cancel</Button>
|
||||
<Button
|
||||
className={cn(styles.button, styles.proceed)}
|
||||
onClick={this.goToNextStep}
|
||||
onClick={props.goToNextStep}
|
||||
>
|
||||
Proceed
|
||||
</Button>
|
||||
|
||||
@@ -3,7 +3,7 @@ import cn from 'classnames';
|
||||
import { Button } from 'plugin-api/beta/client/components/ui';
|
||||
import styles from './DeleteMyAccountStep.css';
|
||||
|
||||
const DeleteMyAccountStep1 = () => (
|
||||
const DeleteMyAccountStep1 = props => (
|
||||
<div className={styles.step}>
|
||||
<h4>When will my account be deleted?</h4>
|
||||
<p className={styles.description}>
|
||||
@@ -19,7 +19,7 @@ const DeleteMyAccountStep1 = () => (
|
||||
<Button className={cn(styles.button, styles.cancel)}>Cancel</Button>
|
||||
<Button
|
||||
className={cn(styles.button, styles.proceed)}
|
||||
onClick={this.goToNextStep}
|
||||
onClick={props.goToNextStep}
|
||||
>
|
||||
Proceed
|
||||
</Button>
|
||||
|
||||
@@ -3,7 +3,7 @@ import cn from 'classnames';
|
||||
import { Button } from 'plugin-api/beta/client/components/ui';
|
||||
import styles from './DeleteMyAccountStep.css';
|
||||
|
||||
const DeleteMyAccountStep1 = () => (
|
||||
const DeleteMyAccountStep1 = props => (
|
||||
<div className={styles.step}>
|
||||
<p className={styles.description}>
|
||||
Before your account is deleted, we recommend you download your comment
|
||||
@@ -16,7 +16,7 @@ const DeleteMyAccountStep1 = () => (
|
||||
<Button className={cn(styles.button, styles.cancel)}>Cancel</Button>
|
||||
<Button
|
||||
className={cn(styles.button, styles.proceed)}
|
||||
onClick={this.goToNextStep}
|
||||
onClick={props.goToNextStep}
|
||||
>
|
||||
Proceed
|
||||
</Button>
|
||||
|
||||
@@ -3,7 +3,7 @@ import cn from 'classnames';
|
||||
import { Button } from 'plugin-api/beta/client/components/ui';
|
||||
import styles from './DeleteMyAccountStep.css';
|
||||
|
||||
const DeleteMyAccountStep1 = () => (
|
||||
const DeleteMyAccountStep1 = props => (
|
||||
<div className={styles.step}>
|
||||
<h4>Are you sure you want to delete your account?</h4>
|
||||
<p className={styles.description}>
|
||||
@@ -20,7 +20,7 @@ const DeleteMyAccountStep1 = () => (
|
||||
<Button className={cn(styles.button, styles.cancel)}>Cancel</Button>
|
||||
<Button
|
||||
className={cn(styles.button, styles.proceed)}
|
||||
onClick={this.goToNextStep}
|
||||
onClick={props.goToNextStep}
|
||||
>
|
||||
Delete My Account
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user