Files
talk/plugins/talk-plugin-featured/client/components/TabPane.js
T
2017-07-10 21:53:55 +07:00

16 lines
314 B
JavaScript

import React from 'react';
export default ({asset: {recentComments}}) => (
<div>
{recentComments.map((comment) => (
<div key={comment.id}>
<div><strong>{comment.user.username}</strong></div>
<div>
{comment.body}
</div>
<hr />
</div>
))}
</div>
);