Files
talk/plugins/talk-plugin-featured/client/components/TabPane.js
T

15 lines
295 B
JavaScript

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