> For the complete documentation index, see [llms.txt](https://yungpoints.gitbook.io/yungpoints/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yungpoints.gitbook.io/yungpoints/platform/react-native.md).

# React Native

To integrate into your React Native app, either open the offerwall in the default browser of the user with the Linking-API or use react-native-webview to show the offerwall inside your app.

#### Linking

```
import { Linking } from 'react-native';
Linking.openURL('https://jdcurrent.com/offers/31/YourTrackingID');
```

#### WebView

```
/*
  Add react-native-webview to your dependencies. Using Yarn:
	yarn add react-native-webview
  Using npm:
	npm install --save react-native-webview
  Using Expo:
	npx expo install react-native-webview
*/
import { WebView } from 'react-native-webview';
return <WebView source={{ uri: 'https://jdcurrent.com/offers/31/YourTrackingID' }} />;
```

Please replace YourTrackingID with a Unique User ID
