mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
24 lines
346 B
Markdown
24 lines
346 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 复杂的组合
|
|
en-US: Complex combination
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
更复杂的组合。
|
|
|
|
## en-US
|
|
|
|
Complex combination with avatar and multiple paragraphs.
|
|
|
|
```tsx
|
|
import { Skeleton } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => <Skeleton avatar paragraph={{ rows: 4 }} />;
|
|
|
|
export default App;
|
|
```
|