Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <div className="card mojaKartica" style={{ width: "30%" }}>
  2. <div className="card-body">
  3. <h4 className="card-title">Ponedjeljak</h4>
  4. <h6 className="card-subtitle mb-2 text-muted">Odabrani termini</h6>
  5. {this.state.termini.map(item =>
  6. item.danUSedmici == "Pon" ? (
  7. <p>
  8. {item.vrijeme} -{" "}
  9. </p>
  10. item.brCasova=="null" ? (
  11. <p>
  12. {parseInt(item.vrijeme.substring(0), 10) + 3}
  13. :00
  14. </p>
  15. ):(
  16. <p>
  17. {parseInt(item.vrijeme.substring(0), 10) + item.brCasova}
  18. :00
  19. </p>
  20. )
  21.  
  22.  
  23. ) : (
  24. void 0
  25. )
  26. )}
  27. </div>
  28. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement