ソースを参照

add app/pages/chargeV2/TabExplore.js

wudebin 6 ヶ月 前
コミット
4033a81bfb
1 ファイル変更22 行追加0 行削除
  1. 22 0
      Strides-SPAPP/app/pages/chargeV2/TabExplore.js

+ 22 - 0
Strides-SPAPP/app/pages/chargeV2/TabExplore.js

@@ -0,0 +1,22 @@
+/**
+ * 新版充电站Explore页面
+ * @邠心vbe on 2023/02/06
+ */
+import React, { Component } from 'react';
+import { View, Text } from 'react-native';
+
+export default class TabExplore extends Component {
+  constructor(props) {
+    super(props);
+    this.state = {
+    };
+  }
+
+  render() {
+    return (
+      <View>
+        <Text> Comming soon... </Text>
+      </View>
+    );
+  }
+}