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