mirror of
https://github.com/wassname/talk.git
synced 2026-07-29 11:28:24 +08:00
9 lines
249 B
JavaScript
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>
|
|
);
|