Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
425 Bytes
import Comment from './Comment';
import React from 'react';
const CommentList = props => {
return (
<div>
{
props.comments.map(comment => {
return (
<Comment
comment={comment}
currentUser={props.currentUser}
slug={props.slug}
key={comment.id} />
);
})
}
</div>
);
};
export default CommentList;