ant-design/components/comment/index.en-US.md

24 lines
885 B
Markdown
Raw Normal View History

2018-10-22 21:20:28 +08:00
---
category: Components
type: Data Display
title: Comment
cols: 1
---
2018-11-02 23:38:52 +08:00
A comment displays user feedback and discussion to website content.
2018-10-22 21:20:28 +08:00
## When To Use
2018-11-02 23:38:52 +08:00
Comments can be used to enable discussions on an entity such as a page, blog post, issue or other.
2018-10-22 21:20:28 +08:00
## API
| Property | Description | Type | Default |
2019-05-07 14:57:32 +08:00
| --- | --- | --- | --- |
2018-10-22 22:28:58 +08:00
| actions | List of action items rendered below the comment content | Array<ReactNode> | - |
2018-11-02 16:47:01 +08:00
| author | The element to display as the comment author | string\|ReactNode | - |
| avatar | The element to display as the comment avatar - generally an antd `Avatar` or src | string\|ReactNode | - |
| children | Nested comments should be provided as children of the Comment | ReactNode | - |
2018-11-02 16:47:01 +08:00
| content | The main content of the comment | string\|ReactNode | - |
| datetime | A datetime element containing the time to be displayed | string\|ReactNode | - |