|
|
|
---
|
|
|
|
order: 2
|
|
|
|
title:
|
|
|
|
zh-CN: 嵌套评论
|
|
|
|
en-US: Nested comments
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
评论可以嵌套。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Comments can be nested.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Comment, Avatar } from 'antd';
|
|
|
|
|
|
|
|
const ExampleComment = ({ children }) => (
|
|
|
|
<Comment
|
|
|
|
actions={[<span key="comment-nested-reply-to">Reply to</span>]}
|
|
|
|
author={<a>Han Solo</a>}
|
|
|
|
avatar={
|
|
|
|
<Avatar
|
|
|
|
src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png"
|
|
|
|
alt="Han Solo"
|
|
|
|
/>
|
|
|
|
}
|
|
|
|
content={
|
|
|
|
<p>
|
|
|
|
We supply a series of design principles, practical patterns and high quality design
|
|
|
|
resources (Sketch and Axure).
|
|
|
|
</p>
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{children}
|
|
|
|
</Comment>
|
|
|
|
);
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<ExampleComment>
|
|
|
|
<ExampleComment>
|
|
|
|
<ExampleComment />
|
|
|
|
<ExampleComment />
|
|
|
|
</ExampleComment>
|
|
|
|
</ExampleComment>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|