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

9 lines
249 B
JavaScript

import React from 'react';
import FeaturedComment from './FeaturedComment';
export default ({asset: {featuredComments}}) => (
<div>
{featuredComments.nodes.map((comment) => <FeaturedComment key={comment.id} comment={comment} />)}
</div>
);