mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
871 B
871 B
order | title | ||||
---|---|---|---|---|---|
2 |
|
zh-CN
评论可以嵌套
en-US
Comment can be nested
import { Comment, Icon, Tooltip, Avatar } from 'antd';
import moment from 'moment';
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>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
);