import React from 'react'; // TODO: This is just example code, and needs to replaced by an actual implementation. export default ({asset: {recentComments}}) => (
{recentComments.map((comment) => (
{comment.user.username}
{comment.body}

))}
);