mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 06:14:52 +08:00
9 lines
226 B
JavaScript
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;
|