Files
talk/client/coral-framework/components/CommentAuthorName.js
T
2018-01-11 20:00:34 -07:00

9 lines
226 B
JavaScript

import React from 'react';
import styles from './CommentAuthorName.css';
const CommentAuthorName = ({ comment }) => (
<span className={styles.authorName}>{comment.user.username}</span>
);
export default CommentAuthorName;