Files
talk/client/coral-framework/components/CommentAuthorName.js
T
Belen Curcio 19dfe86118 Updates
2017-08-21 14:53:24 -03:00

10 lines
229 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;