mirror of
https://github.com/wahyd4/ant-design.git
synced 2026-08-27 13:46:18 +10: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'));
|
|
````
|