import { TouchableOpacity, View, Image, Text, Alert } from 'react-native'; export default function Stat({ children, source, description }) { return ( Alert.alert("Info", description) : null}> {source && } {children} ); };