ant-design/components/space/demo/wrap.md

31 lines
447 B
Markdown
Raw Normal View History

---
order: 98
title:
zh-CN: 自动换行
en-US: Wrap
---
## zh-CN
自动换行。
## en-US
Auto wrap line.
```tsx
2022-05-21 22:14:15 +08:00
import { Button, Space } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Space size={[8, 16]} wrap>
{new Array(20).fill(null).map((_, index) => (
// eslint-disable-next-line react/no-array-index-key
<Button key={index}>Button</Button>
))}
</Space>
);
2022-04-28 20:54:19 +08:00
export default App;
```