瀏覽代碼

add app/pages/charge/Explore.js

wudebin 6 月之前
父節點
當前提交
07fbbe567c
共有 1 個文件被更改,包括 25 次插入0 次删除
  1. 25 0
      Strides-SPAPP/app/pages/charge/Explore.js

+ 25 - 0
Strides-SPAPP/app/pages/charge/Explore.js

@@ -0,0 +1,25 @@
+/**
+ * Explore页面
+ * @邠心vbe on 2021/04/12
+ */
+import React, { Component } from 'react';
+import { View, Text } from 'react-native';
+
+export default class Explore extends Component {
+  constructor(props) {
+    super(props);
+    this.state = {
+    };
+  }
+
+  render() {
+    return (
+      <View style={{
+        padding: 16,
+        ...(this.props.style || {})
+      }}>
+        <Text> Comming soon... </Text>
+      </View>
+    );
+  }
+}