mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 22:18:15 +08:00
19 lines
544 B
JavaScript
19 lines
544 B
JavaScript
import React from 'react';
|
|
import styles from './AddEmailAddressDialog.css';
|
|
|
|
const EmailAddressAdded = () => (
|
|
<div>
|
|
<h4 className={styles.title}>Email Address Added</h4>
|
|
<p className={styles.description}>
|
|
Your email address has been added to your account.
|
|
</p>
|
|
<strong>Need to change your email address?</strong>
|
|
<p className={styles.description}>
|
|
You can change your account settings by visiting{' '}
|
|
<strong>My Profile {'>'} Settings</strong>.
|
|
</p>
|
|
</div>
|
|
);
|
|
|
|
export default EmailAddressAdded;
|