mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
9 lines
148 B
React
9 lines
148 B
React
![]() |
const CommentItem = props => {
|
||
|
return (
|
||
|
<li className="comment">
|
||
|
<p>{props.htmlBody}</p>
|
||
|
</li>
|
||
|
)
|
||
|
};
|
||
|
|
||
|
module.exports = CommentItem;
|