You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1019 B
38 lines
1019 B
import React, { useState } from 'react';
|
|
import type { RadioChangeEvent } from 'antd';
|
|
import { Radio, Tabs } from 'antd';
|
|
|
|
type TabPosition = 'left' | 'right' | 'top' | 'bottom';
|
|
|
|
const App: React.FC = () => {
|
|
const [mode, setMode] = useState<TabPosition>('top');
|
|
|
|
const handleModeChange = (e: RadioChangeEvent) => {
|
|
setMode(e.target.value);
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
<Radio.Group onChange={handleModeChange} value={mode} style={{ marginBottom: 8 }}>
|
|
<Radio.Button value="top">Horizontal</Radio.Button>
|
|
<Radio.Button value="left">Vertical</Radio.Button>
|
|
</Radio.Group>
|
|
<Tabs
|
|
defaultActiveKey="1"
|
|
tabPosition={mode}
|
|
style={{ height: 220 }}
|
|
items={new Array(30).fill(null).map((_, i) => {
|
|
const id = String(i);
|
|
return {
|
|
label: `Tab-${id}`,
|
|
key: id,
|
|
disabled: i === 28,
|
|
children: `Content of tab ${id}`,
|
|
};
|
|
})}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|