2018-10-22 22:28:58 +08:00
|
|
|
---
|
2018-10-25 21:32:29 +08:00
|
|
|
order: 2
|
2018-10-22 22:28:58 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 嵌套评论
|
|
|
|
en-US: Nested comment
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
评论可以嵌套
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Comment can be nested
|
|
|
|
|
|
|
|
````jsx
|
|
|
|
import { Comment, Icon, Tooltip, Avatar } from 'antd';
|
|
|
|
import moment from 'moment';
|
|
|
|
|
2018-10-29 22:05:42 +08:00
|
|
|
function ExampleComment({ children }) {
|
|
|
|
return (
|
|
|
|
<Comment
|
|
|
|
actions={[<span>Reply to</span>]}
|
|
|
|
author={<a>Han Solo</a>}
|
|
|
|
avatar={
|
|
|
|
<Avatar
|
|
|
|
src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png"
|
|
|
|
alt="Han Solo"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
content={<p>Sagittis id consectetur purus ut faucibus pulvinar elementum integer enim.</p>}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</Comment>
|
|
|
|
);
|
|
|
|
}
|
2018-10-22 22:28:58 +08:00
|
|
|
|
|
|
|
ReactDOM.render(
|
2018-10-29 00:26:13 +08:00
|
|
|
<ExampleComment>
|
|
|
|
<ExampleComment>
|
|
|
|
<ExampleComment />
|
2018-10-22 22:28:58 +08:00
|
|
|
<ExampleComment />
|
2018-10-29 00:26:13 +08:00
|
|
|
</ExampleComment>
|
|
|
|
</ExampleComment>,
|
2018-10-22 22:28:58 +08:00
|
|
|
mountNode
|
|
|
|
);
|
|
|
|
````
|