React Native – Passing navigation into a child component
I have a screen with the following: function Intereset ({ navigation }) { function ReturnMyFunction () { if (!var.length) { return ( <NoILikes /> ) } else { return ( <FlatList data={Ilike} keyExtractor={item => item._id} ItemSeparatorComponent={() => <Divider />} renderItem={UserRow}…