react-native link to a webpage code example
Example: open websute react native
import { Linking, Button } from "react-native";
{/*Insert the rest of your code :)*/}
<Button
title="Open Motorola Website"
onPress={() => Linking.openURL('https://www.motorola.com')}
/>
{/*Hello Moto*/}