Vulcan/packages/nova-components/lib/comments/list/CommentItem.jsx
2016-02-17 14:27:27 +09:00

9 lines
No EOL
148 B
JavaScript

const CommentItem = props => {
return (
<li className="comment">
<p>{props.htmlBody}</p>
</li>
)
};
module.exports = CommentItem;