Last active
April 25, 2020 14:49
-
-
Save andrewjmeier/efbcb130dae56a4fd2d43daf156702c0 to your computer and use it in GitHub Desktop.
Trivia Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "General Knowledge", | |
"questions": [ | |
{ | |
"id": 1, | |
"question": "What year did the iPod Mini come out?", | |
"answer": "2004", | |
"points": 1 | |
},{ | |
"id": 2, | |
"question": "Which airplane is nicknamed the 'Queen of the Skies'?", | |
"answer": "747", | |
"points": 2 | |
},{ | |
"id": 3, | |
"question": "In a standard 52 card deck, which card holds the cardmaker's trademark?", | |
"answer": "Ace of Spades", | |
"points": 1 | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"isCurrent": false, | |
"currentScore": 0, | |
"name": "Team 3", | |
"members": ["Shane"] | |
}, { | |
"isCurrent": true, | |
"currentScore": 10, | |
"name": "Team 1", | |
"members": ["Andrew", "Quinn"] | |
}, { | |
"isCurrent": false, | |
"currentScore": 5, | |
"name": "Team 2", | |
"members": ["Mil"] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment