mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 11:45:32 +08:00
23 lines
620 B
JavaScript
23 lines
620 B
JavaScript
import React from 'react';
|
|
import styles from './NotLoggedIn.css';
|
|
import SignInContainer from '../../coral-sign-in/containers/SignInContainer';
|
|
|
|
export default ({showSignInDialog}) => (
|
|
<div className={styles.message}>
|
|
<SignInContainer noButton={true}/>
|
|
<div>
|
|
<a onClick={() => {
|
|
console.log('Signin click');
|
|
showSignInDialog();
|
|
}}>Sign In</a> to access Settings
|
|
</div>
|
|
<div>
|
|
From the Settings Page you can
|
|
<ul>
|
|
<li>See your comment history</li>
|
|
<li>Write a bio about yourself to display to the community</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
);
|