Advertisement
Guest User

Untitled

a guest
Aug 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <>
  2. {
  3. cards.map((card, index) =>
  4. <div className='card col-4 col-lg-4' key={index}>
  5. <div className='singleCard'>
  6. <img className='cardImage' src={card.image} alt="card" />
  7. </div>
  8.  
  9. <div className='cardValue'>
  10. Points: {card.value}
  11. </div>
  12. </div>
  13. )
  14. }
  15. </>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement