mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 20:08:37 +08:00
10 lines
229 B
JavaScript
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;
|