소스 검색

add app/pages/payment/RefundPolicy.js

wudebin 5 달 전
부모
커밋
3d29469fcf
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  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}}/>
+  )
+}