ant-design/components/comment/demo/nested.md

50 lines
860 B
Markdown
Raw Normal View History

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: 嵌套评论
2018-11-02 23:38:52 +08:00
en-US: Nested comments
2018-10-22 22:28:58 +08:00
---
## zh-CN
2018-11-02 23:38:52 +08:00
评论可以嵌套。
2018-10-22 22:28:58 +08:00
## en-US
2018-11-02 23:38:52 +08:00
Comments can be nested.
2018-10-22 22:28:58 +08:00
2019-05-07 14:57:32 +08:00
```jsx
2018-10-31 20:10:42 +08:00
import { Comment, Avatar } from 'antd';
2018-10-22 22:28:58 +08:00
2018-10-31 20:53:10 +08:00
const ExampleComment = ({ children }) => (
<Comment
2019-08-02 18:19:06 +08:00
actions={[<span key="comment-nested-reply-to">Reply to</span>]}
2018-10-31 20:53:10 +08:00
author={<a>Han Solo</a>}
2019-05-07 14:57:32 +08:00
avatar={
2018-10-31 20:53:10 +08:00
<Avatar
src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png"
alt="Han Solo"
/>
2019-05-07 14:57:32 +08:00
}
content={
<p>
We supply a series of design principles, practical patterns and high quality design
resources (Sketch and Axure).
</p>
}
2018-10-31 20:53:10 +08:00
>
{children}
</Comment>
);
2018-10-22 22:28:58 +08:00
ReactDOM.render(
<ExampleComment>
<ExampleComment>
<ExampleComment />
2018-10-22 22:28:58 +08:00
<ExampleComment />
</ExampleComment>
</ExampleComment>,
2018-12-01 00:24:16 +08:00
mountNode,
);
2019-05-07 14:57:32 +08:00
```