RefundPolicy.js 276 B

12345678910111213
  1. /**
  2. * 退款条款页面
  3. * @邠心vbe on 2023/09/1
  4. */
  5. import React from 'react';
  6. import WebView from 'react-native-webview';
  7. import app from '../../../app.json';
  8. export default RefundPrivacy = () => {
  9. return (
  10. <WebView source={{uri: app.storeUrl.refundUrl}}/>
  11. )
  12. }