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