ant-design/components/affix/demo/basic.md
afc163 753c01ae18 ES6 syntax for demo code
fix antd.notification
2015-10-28 20:55:49 +08:00

18 lines
251 B
Markdown

# 基本
- order: 0
最简单的用法。
---
````jsx
import { Affix, Button } from 'antd';
ReactDOM.render(
<Affix>
<Button type="primary">固定在顶部</Button>
</Affix>
, document.getElementById('components-affix-demo-basic'));
````