1import { Linking, Button } from "react-native";
2{/*Insert the rest of your code :)*/}
3<Button
4 title="Open Motorola Website"
5 onPress={() => Linking.openURL('https://www.motorola.com')}
6 />
7{/*Hello Moto*/}
1Linking
2 .openURL('https://link.com')
3 .catch(err => console.error('Error', err));