Skip to content

Instantly share code, notes, and snippets.

@szanata
Created March 16, 2019 14:47
Show Gist options
  • Save szanata/c12b7c4077c619186f84fa417d37007b to your computer and use it in GitHub Desktop.
Save szanata/c12b7c4077c619186f84fa417d37007b to your computer and use it in GitHub Desktop.
Payload
const personnel = [
{
id: 5,
name: "Luke Skywalker",
pilotingScore: 98,
shootingScore: 56,
isForceUser: true,
},
{
id: 82,
name: "Sabine Wren",
pilotingScore: 73,
shootingScore: 99,
isForceUser: false,
},
{
id: 22,
name: "Zeb Orellios",
pilotingScore: 20,
shootingScore: 59,
isForceUser: false,
},
{
id: 15,
name: "Ezra Bridger",
pilotingScore: 43,
shootingScore: 67,
isForceUser: true,
},
{
id: 11,
name: "Caleb Dume",
pilotingScore: 71,
shootingScore: 85,
isForceUser: true,
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment