--- order: 4 title: zh-CN: 附加内容 en-US: Extra content --- ## zh-CN 可以在页签两边添加附加操作。 ## en-US You can add extra actions to the right or left or even both side of Tabs. ```tsx import { Button, Checkbox, Divider, Tabs } from 'antd'; import React, { useMemo, useState } from 'react'; const CheckboxGroup = Checkbox.Group; const operations = ; const OperationsSlot: Record = { left: , right: , }; const options = ['left', 'right']; type PositionType = 'left' | 'right'; const items = new Array(3).fill(null).map((_, i) => { const id = String(i + 1); return { label: `Tab ${id}`, key: id, children: `Content of tab ${id}`, }; }); const App: React.FC = () => { const [position, setPosition] = useState(['left', 'right']); const slot = useMemo(() => { if (position.length === 0) return null; return position.reduce( (acc, direction) => ({ ...acc, [direction]: OperationsSlot[direction] }), {}, ); }, [position]); return ( <>


You can also specify its direction or both side
{ setPosition(value as PositionType[]); }} />

); }; export default App; ``` ```css .tabs-extra-demo-button { margin-right: 16px; } .ant-row-rtl .tabs-extra-demo-button { margin-right: 0; margin-left: 16px; } ```