ant-design/components/affix/demo/basic.md

32 lines
399 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-08-03 16:49:42 +08:00
## zh-CN
2015-08-03 16:49:42 +08:00
最简单的用法。
## en-US
The simplest usage.
2017-02-13 10:55:53 +08:00
````jsx
import { Affix, Button } from 'antd';
2015-08-03 16:49:42 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2016-10-30 15:11:22 +08:00
<div>
<Affix>
<Button type="primary">Affix top</Button>
</Affix>
<br />
<Affix offsetBottom={0}>
<Button type="primary">Affix bottom</Button>
</Affix>
</div>,
mountNode
);
2015-08-03 16:49:42 +08:00
````