import { STORE_URLS } from "constants/store-urls"; import { Image } from "expo-image"; import { Linking, TouchableOpacity, View } from "react-native"; const RATIO = 3.39741547176; const WIDTH = 200; const HEIGHT = 200 / RATIO; export default function GetApps() { return ( Linking.openURL(STORE_URLS.ios)}> Linking.openURL(STORE_URLS.android)}> ); }