return books.map((book, i) => {
return(
<View style={ (i === books.length - 1) ? styles.noBorderBook : styles.book} key={i}>
<Text style={(i === books.length - 1) ? styles.noBorderBook : styles.book}>{book.title}</Text>
</View>
);
});
Wednesday, September 8, 2021
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment