mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
16 lines
197 B
Markdown
16 lines
197 B
Markdown
# 基本用法
|
|
|
|
- order: 0
|
|
|
|
一个简单的 loading 状态。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Spin } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Spin />
|
|
, document.getElementById('components-spin-demo-basic'));
|
|
````
|