move tests to tests directory

This commit is contained in:
Riley Davis
2016-12-14 12:01:32 -07:00
parent 5962037c21
commit 624eaeee11
4 changed files with 39 additions and 3 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
.assetURL {
font-size: 16px;
color: black;
}
.commentBody {
+4 -2
View File
@@ -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>
);
};