So I\'m trying to use React Native\'s FlatList renderItem property, but something very strange is happening.
The data property is set to an array which
data
I was missing a curlybraces { } around the item. After adding them , now it work fine.
renderItem= {({item}) => this.Item(item.title)}