In any application, at some point, you will end up having to deal with some kind
of list. In javascript, a "List" is a collection of elements {}.
const myList = [
{
item: "banana"
},
{
item: "avocado"
},
{
item: "eggs"
}
];
When displaying lists on React/ReactNative, the