Skip to content

Instantly share code, notes, and snippets.

@JustAyush
Created May 17, 2020 10:41
Show Gist options
  • Select an option

  • Save JustAyush/9cd0fa1298734db488711cfa44b52823 to your computer and use it in GitHub Desktop.

Select an option

Save JustAyush/9cd0fa1298734db488711cfa44b52823 to your computer and use it in GitHub Desktop.
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