You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

963 B

order title
2 [{zh-CN 嵌套评论} {en-US Nested comment}]

zh-CN

评论可以嵌套

en-US

Comment can be nested

import { Comment, Icon, Tooltip, Avatar } from 'antd';
import moment from 'moment';

const NestedComment = Comment.Nested;

const ExampleComment = () => (
  <Comment
    author={<a>Han Solo</a>}
    avatar={
      <Avatar
        src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png"
        alt="Han Solo"
      />
    }
    time={moment().fromNow()}
  >
    <p>Sagittis id consectetur purus ut faucibus pulvinar elementum integer enim. Pellentesque massa placerat duis ultricies lacus sed turpis. Tempus urna et pharetra pharetra massa massa.</p>
  </Comment>
);

ReactDOM.render(
  <React.Fragment>
    <ExampleComment />
    <NestedComment>
      <ExampleComment />
      <NestedComment>
        <ExampleComment />
      </NestedComment>
    </NestedComment>
  </React.Fragment>,
  mountNode
);