import React from "react"; import { StyleSheet, View, Text, Image } from "react-native"; const Shop = ({ item }) => { return ( {item.title} {item.items.map((item1) => ( ))} ); }; const styles = StyleSheet.create({ container: { borderRadius: 10, flex: 1, paddingVertical: 5, paddingHorizontal: 10, flexDirection: "column", textAlign: "right", margin: 5 }, list: { display: "flex", flexDirection: "row", justifyContent: "space-around", marginTop: 10 }, product: { width: 50, height: 65, borderRadius: 10 }, title: { fontSize: 18, fontWeight: '600', marginBottom: 5, color: "white" } }); export default Shop;