leo 2 anos atrás
pai
commit
57a8e258c6

+ 0 - 0
src/module/datasource/component/DatasourceDialog.jsx


+ 0 - 0
src/module/datasource/component/DatasourceManage.jsx


+ 0 - 0
src/module/datasource/component/DatasourceSyncView.jsx


+ 19 - 1
src/module/datasource/page/DatasourceView.jsx

@@ -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>
+    )
   }
 }