forked from Gitlink/forgeplus-react
36 lines
698 B
JavaScript
36 lines
698 B
JavaScript
/*
|
|
* @Description: 评论组件
|
|
* @Author: tangjiang
|
|
* @Github:
|
|
* @Date: 2019-12-17 17:31:33
|
|
* @LastEditors : tangjiang
|
|
* @LastEditTime : 2019-12-24 18:03:21
|
|
*/
|
|
import React from 'react';
|
|
import CommentList from './CommentList';
|
|
function Comment(props) {
|
|
|
|
const {
|
|
commentLists,
|
|
isAdmin,
|
|
addChildComment,
|
|
likeComment,
|
|
showOrHideComment,
|
|
submitDeleteComment
|
|
} = props;
|
|
|
|
return (
|
|
<CommentList
|
|
isAdmin={isAdmin}
|
|
likeComment={likeComment}
|
|
showOrHideComment={showOrHideComment}
|
|
commentLists={commentLists}
|
|
submitChildComment={addChildComment}
|
|
submitDeleteComment={submitDeleteComment}
|
|
/>
|
|
|
|
);
|
|
}
|
|
|
|
export default Comment;
|