mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-11 23:00:20 +08:00
19 lines
412 B
TypeScript
19 lines
412 B
TypeScript
|
import React from 'react';
|
||
|
import { Tabs } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Tabs defaultActiveKey="1">
|
||
|
<Tabs.TabPane tab="Tab 1" key="1">
|
||
|
Content of Tab Pane 1
|
||
|
</Tabs.TabPane>
|
||
|
<Tabs.TabPane tab="Tab 2" key="2">
|
||
|
Content of Tab Pane 2
|
||
|
</Tabs.TabPane>
|
||
|
<Tabs.TabPane tab="Tab 3" key="3">
|
||
|
Content of Tab Pane 3
|
||
|
</Tabs.TabPane>
|
||
|
</Tabs>
|
||
|
);
|
||
|
|
||
|
export default App;
|