import React, { FC } from 'react' import { Image, Text, TouchableOpacity, View } from 'react-native' import R from '../../../res' import { OrderListItemStyles as s } from './styles' import { IOrderListItemProps } from './types' const OrderListItem: FC = ({ order, onSelectOrder, styles }) => { return ( { onSelectOrder(order) }} > {/* Left side of the item */} {/* Image content */} {/* Info content */} {order.id} {order.date} {order.eventName} {order.currency} {order.amount} {/* Right side of the item */} ) } export default OrderListItem