Skip to content

Instantly share code, notes, and snippets.

@katsimoto
Last active April 7, 2023 02:08
Show Gist options
  • Save katsimoto/eb5e319e5f73fb48888ab5b499dd42a5 to your computer and use it in GitHub Desktop.
Save katsimoto/eb5e319e5f73fb48888ab5b499dd42a5 to your computer and use it in GitHub Desktop.
import WebView from 'react-native-webview';
import React from 'react';
export const Tips = () => {
const name = 'John Doe';
const phoneNumber = '+72025550139';
const amount = 100;
const uri = `https://pay.cloudtips.ru/a/borodach?name=${name}&sales=390&phone=${phoneNumber}&hidecomment=true${amount ? `&amount=${amount}` : ''}`
return (
<WebView source={{ uri }} />
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment