Files
talk/plugins/talk-plugin-featured/client/components/TabPane.js
T
2017-07-10 22:49:06 +07:00

17 lines
401 B
JavaScript

import React from 'react';
// TODO: This is just example code, and needs to replaced by an actual implementation.
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>
);