ant-design/components/spin/demo/inside.md

28 lines
348 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title: 容器
---
2015-10-31 02:00:03 +08:00
放入一个容器中。
````jsx
import { Spin } from 'antd';
ReactDOM.render(
<div className="example">
<Spin />
</div>
, mountNode);
2015-10-31 02:00:03 +08:00
````
````css
.example {
text-align: center;
background: rgba(0,0,0,0.05);
border-radius: 4px;
margin-bottom: 20px;
padding: 30px 50px;
margin: 20px 0;
}
````