import { Image, Text, Touchable } from '@/components/core'; import { useTailwind } from '@/hooks'; import { View } from 'react-native'; import { Photos } from '../services/schemas'; const Item = (props: Photos[number]) => { const tw = useTailwind(); const handleOnPress = () => print(props); return ( {formatReferenceType(props)} ); }; export default Item;