mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-01 03:29:39 +08:00
3511642337
* docs: segmented update * test: fix lint
31 lines
377 B
Markdown
31 lines
377 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
最简单的用法。
|
|
|
|
## en-US
|
|
|
|
The most basic usage.
|
|
|
|
```jsx
|
|
import { Segmented } from 'antd';
|
|
|
|
export default () => <Segmented options={['Daily', 'Weekly', 'Monthly', 'Quarterly', 'Yearly']} />;
|
|
```
|
|
|
|
```css
|
|
.code-box-demo {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.code-box-demo .ant-segmented {
|
|
margin-bottom: 10px;
|
|
}
|
|
```
|