mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 09:39:10 +08:00
18 lines
255 B
Markdown
18 lines
255 B
Markdown
# 基本
|
|
|
|
- order: 0
|
|
|
|
最简单的用法。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Affix = antd.Affix;
|
|
|
|
React.render(
|
|
<Affix>
|
|
<button className="ant-btn ant-btn-primary">固定在顶部</button>
|
|
</Affix>
|
|
, document.getElementById('components-affix-demo-basic'));
|
|
````
|