iamshaunjp / react-native-tutorial

All the course files for the React Tutorial for Beginners playlist on The Ne Ninja Playlist
593 stars 508 forks source link

Lesson 28 #5

Closed harishjartarghar closed 4 years ago

harishjartarghar commented 4 years ago

simple technique of creating key for reviews

harishjartarghar commented 4 years ago

const addReview=(review)=>{ review.key=(reviews.length+1).toString(); setReviews((currentReview)=>{ return [review,...currentReview] }); setModal(false); }