|
@@ -1,8 +1,26 @@
|
|
|
import React from 'react'
|
|
|
+import { Tabs } from 'antd'
|
|
|
+
|
|
|
+const { TabPane } = Tabs
|
|
|
|
|
|
class DatasourceView extends React.Component {
|
|
|
+ onChange = key => {
|
|
|
+ console.log(key)
|
|
|
+ }
|
|
|
render() {
|
|
|
- return <h1>111</h1>
|
|
|
+ return (
|
|
|
+ <Tabs onChange={this.onChange} type="card">
|
|
|
+ <TabPane tab="Tab 1" key="1">
|
|
|
+ Content of Tab Pane 1
|
|
|
+ </TabPane>
|
|
|
+ <TabPane tab="Tab 2" key="2">
|
|
|
+ Content of Tab Pane 2
|
|
|
+ </TabPane>
|
|
|
+ <TabPane tab="Tab 3" key="3">
|
|
|
+ Content of Tab Pane 3
|
|
|
+ </TabPane>
|
|
|
+ </Tabs>
|
|
|
+ )
|
|
|
}
|
|
|
}
|
|
|
|