mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
29 lines
451 B
TypeScript
29 lines
451 B
TypeScript
|
import React from 'react';
|
||
|
import { Tabs } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Tabs
|
||
|
defaultActiveKey="1"
|
||
|
items={[
|
||
|
{
|
||
|
label: 'Tab 1',
|
||
|
key: '1',
|
||
|
children: 'Tab 1',
|
||
|
},
|
||
|
{
|
||
|
label: 'Tab 2',
|
||
|
key: '2',
|
||
|
children: 'Tab 2',
|
||
|
disabled: true,
|
||
|
},
|
||
|
{
|
||
|
label: 'Tab 3',
|
||
|
key: '3',
|
||
|
children: 'Tab 3',
|
||
|
},
|
||
|
]}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|