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.
17 lines
589 B
17 lines
589 B
2 years ago
|
import React from 'react';
|
||
|
import { Descriptions } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<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>
|
||
|
);
|
||
|
|
||
|
export default App;
|