ant-design/components/skeleton/demo/complex.md

24 lines
346 B
Markdown
Raw Normal View History

---
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';
2022-05-23 14:37:16 +08:00
import React from 'react';
const App: React.FC = () => <Skeleton avatar paragraph={{ rows: 4 }} />;
export default App;
2019-05-07 14:57:32 +08:00
```