mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-20 20:38:09 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
44 lines
788 B
Markdown
44 lines
788 B
Markdown
---
|
|
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://joeschmoe.io/api/v1/random" 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>
|
|
);
|
|
|
|
export default () => (
|
|
<ExampleComment>
|
|
<ExampleComment>
|
|
<ExampleComment />
|
|
<ExampleComment />
|
|
</ExampleComment>
|
|
</ExampleComment>
|
|
);
|
|
```
|