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.
29 lines
556 B
29 lines
556 B
import React from 'react';
|
|
import { 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`,
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => <Tabs defaultActiveKey="1" items={items} onChange={onChange} />;
|
|
|
|
export default App;
|
|
|