Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. const personnel = [
  2. {
  3. id: 5,
  4. name: "Luke Skywalker",
  5. pilotingScore: 98,
  6. shootingScore: 56,
  7. isForceUser: true,
  8. },
  9. {
  10. id: 82,
  11. name: "Sabine Wren",
  12. pilotingScore: 73,
  13. shootingScore: 99,
  14. isForceUser: false,
  15. },
  16. {
  17. id: 22,
  18. name: "Zeb Orellios",
  19. pilotingScore: 20,
  20. shootingScore: 59,
  21. isForceUser: false,
  22. },
  23. {
  24. id: 15,
  25. name: "Ezra Bridger",
  26. pilotingScore: 43,
  27. shootingScore: 67,
  28. isForceUser: true,
  29. },
  30. {
  31. id: 11,
  32. name: "Caleb Dume",
  33. pilotingScore: 71,
  34. shootingScore: 85,
  35. isForceUser: true,
  36. },
  37. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement