);
}
import { Platform } from "react-native";
{
Platform.OS === "web" && (
<Image
source={require("@/assets/images/react-logo.png")}
style={{
height: 178,
width: 290,
bottom: 0,
left: 0,
position: "absolute",
}}
/>
);
}
<ThemedText type="defaultSemiBold">
{Platform.select({
ios: "cmd + d",
android: "cmd + m",
web: "F12",
})}
</ThemedText>;