diff --git a/src/components/FoodListItem.tsx b/src/components/FoodListItem.tsx index 98967a0..d057f48 100644 --- a/src/components/FoodListItem.tsx +++ b/src/components/FoodListItem.tsx @@ -3,16 +3,7 @@ import { AntDesign } from "@expo/vector-icons"; const FoodListItem = ({ item }) => { return ( - + {item.label} @@ -24,4 +15,15 @@ const FoodListItem = ({ item }) => { ); }; +const styles = StyleSheet.create({ + container: { + backgroundColor: "gainsboro", + padding: 10, + borderRadius: 5, + flexDirection: "row", + justifyContent: "space-between", + alignItems: "center", + }, +}); + export default FoodListItem;