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.
|
|
|
---
|
|
|
|
order: 0
|
|
|
|
title:
|
|
|
|
zh-CN: 基本
|
|
|
|
en-US: Basic
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
简单的展示。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Simplest Usage.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Descriptions } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Descriptions title="User Info">
|
|
|
|
<Descriptions.Item label="UserName">Zhou Maomao</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Telephone">1810000000</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Live">Hangzhou, Zhejiang</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Remark">empty</Descriptions.Item>
|
|
|
|
<Descriptions.Item label="Address">
|
|
|
|
No. 18, Wantang Road, Xihu District, Hangzhou, Zhejiang, China
|
|
|
|
</Descriptions.Item>
|
|
|
|
</Descriptions>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|