mirror of
https://github.com/wassname/talk.git
synced 2026-07-04 16:15:37 +08:00
17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
import React from 'react';
|
|
import styles from './Bio.css';
|
|
import {Button} from '../../coral-ui';
|
|
|
|
export default () => (
|
|
<div className={styles.bio}>
|
|
<h1>Bio</h1>
|
|
<p>Tell the community about yourself</p>
|
|
<textarea />
|
|
<div className={styles.actions}>
|
|
<Button cStyle='cancel' raised>Cancel</Button>
|
|
<Button cStyle='success'>Save Changes</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
|