{people.map((data) => ( <View key={data.key}> <Text style={styles.item}>{data.name}</Text> </View> ))}
{people.map((data) => { return ( <View key={data.key}> <Text style={styles.item}>{data.name}</Text> </View> ); })}
Join the Discord to ask follow-up questions and connect with the community
The best chat community for professionals using React or React Native
76,709 Members