Explorar el Código

add app/pages/payment/RefundPolicy.js

wudebin hace 5 meses
padre
commit
3d29469fcf
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      Strides-SPAPP/app/pages/payment/RefundPolicy.js

+ 13 - 0
Strides-SPAPP/app/pages/payment/RefundPolicy.js

@@ -0,0 +1,13 @@
+/**
+ * 退款条款页面
+ * @邠心vbe on 2023/09/1
+ */
+import React from 'react';
+import WebView from 'react-native-webview';
+import app from '../../../app.json';
+ 
+export default RefundPrivacy = () => {
+  return (
+    <WebView source={{uri: app.storeUrl.refundUrl}}/>
+  )
+}