Created
May 17, 2020 10:41
-
-
Save JustAyush/9cd0fa1298734db488711cfa44b52823 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| const initialState = [ | |
| { | |
| id: 0, | |
| question: "Who is your favourite youtuber?", | |
| options: [ | |
| { | |
| id: 0, | |
| option: "Casey Neistat", | |
| }, | |
| { | |
| id: 2, | |
| option: "Mr. Beast", | |
| }, | |
| { | |
| id: 3, | |
| option: "David Dobrik", | |
| }, | |
| { | |
| id: 4, | |
| option: "Jason Nash", | |
| }, | |
| { | |
| id: 5, | |
| option: "MKBHD", | |
| }, | |
| ], | |
| correctOption: "0", | |
| chosenOption: null, | |
| }, | |
| { | |
| id: 1, | |
| question: "Who won the fight?", | |
| options: [ | |
| { | |
| id: 0, | |
| option: "KSI", | |
| }, | |
| { | |
| id: 2, | |
| option: "Logan Paul", | |
| }, | |
| ], | |
| correctOption: "0", | |
| chosenOption: null, | |
| }, | |
| { | |
| id: 2, | |
| question: "Who has got the most subs in Youtube?", | |
| options: [ | |
| { | |
| id: 0, | |
| option: "Pewdiepie", | |
| }, | |
| { | |
| id: 2, | |
| option: "Logan Paul", | |
| }, | |
| { | |
| id: 3, | |
| option: "Mr. Beast", | |
| }, | |
| { | |
| id: 4, | |
| option: "Dude Perfect", | |
| }, | |
| ], | |
| correctOption: "0", | |
| chosenOption: null, | |
| }, | |
| ]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment