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

24 lines
285 B
Markdown
Raw Normal View History

---
order: 2
title:
zh-CN: 动画效果
en-US: Active Animation
---
## zh-CN
显示动画效果。
## en-US
Display active animation.
```tsx
import { Skeleton } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
const App: React.FC = () => <Skeleton active />;
export default App;
2019-05-07 14:57:32 +08:00
```