mirror of
https://github.com/wassname/talk.git
synced 2026-08-14 12:50:17 +08:00
move tests to tests directory
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
.assetURL {
|
||||
|
||||
font-size: 16px;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.commentBody {
|
||||
|
||||
@@ -5,8 +5,10 @@ import styles from './Comment.css';
|
||||
const Comment = props => {
|
||||
return (
|
||||
<div>
|
||||
<p><a className={styles.assetURL} href={props.asset.url}>{props.asset.url}</a></p>
|
||||
<p className={styles.commentBody}>{props.comment.body}</p>
|
||||
<p className="myCommentAsset">
|
||||
<a className={`${styles.assetURL} myCommentAnchor`} href={props.asset.url}>{props.asset.url}</a>
|
||||
</p>
|
||||
<p className={`${styles.commentBody} myCommentBody`}>{props.comment.body}</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user