mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-11 13:59:11 +08:00
32 lines
399 B
Markdown
32 lines
399 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
最简单的用法。
|
|
|
|
## en-US
|
|
|
|
The simplest usage.
|
|
|
|
````jsx
|
|
import { Affix, Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<div>
|
|
<Affix>
|
|
<Button type="primary">Affix top</Button>
|
|
</Affix>
|
|
<br />
|
|
<Affix offsetBottom={0}>
|
|
<Button type="primary">Affix bottom</Button>
|
|
</Affix>
|
|
</div>,
|
|
mountNode
|
|
);
|
|
````
|