mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
38 lines
946 B
TypeScript
38 lines
946 B
TypeScript
import React from 'react';
|
|
import { Segmented, Tabs } from 'antd';
|
|
import type { TabsProps } from 'antd';
|
|
|
|
const onChange = (key: string) => {
|
|
console.log(key);
|
|
};
|
|
|
|
const items: TabsProps['items'] = [
|
|
{ key: '1', label: 'Tab 1', children: 'Content of Tab Pane 1' },
|
|
{ key: '2', label: 'Tab 2', children: 'Content of Tab Pane 2' },
|
|
{ key: '3', label: 'Tab 3', children: 'Content of Tab Pane 3' },
|
|
];
|
|
|
|
type Align = 'start' | 'center' | 'end';
|
|
|
|
const App: React.FC = () => {
|
|
const [alignValue, setAlignValue] = React.useState<Align>('center');
|
|
return (
|
|
<>
|
|
<Segmented
|
|
value={alignValue}
|
|
style={{ marginBottom: 8 }}
|
|
onChange={setAlignValue}
|
|
options={['start', 'center', 'end']}
|
|
/>
|
|
<Tabs
|
|
defaultActiveKey="1"
|
|
items={items}
|
|
onChange={onChange}
|
|
indicator={{ size: (origin) => origin - 20, align: alignValue }}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|