You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
673 B
34 lines
673 B
const questions = [
|
|
{
|
|
id: 1,
|
|
question: "Domanda 1",
|
|
answers: [
|
|
{ id: "1", text: "Mars" },
|
|
{ id: "2", text: "Jupiter", correct: true },
|
|
{ id: "3", text: "Saturn" },
|
|
{ id: "4", text: "Venus" }
|
|
]
|
|
},
|
|
{
|
|
id: 2,
|
|
question: "Domanda 2",
|
|
answers: [
|
|
{ id: "1", text: "6" },
|
|
{ id: "2", text: "7" },
|
|
{ id: "3", text: "8", correct: true },
|
|
{ id: "4", text: "9" }
|
|
]
|
|
},
|
|
{
|
|
id: 3,
|
|
question: "Domanda 3",
|
|
answers: [
|
|
{ id: "1", text: "6" },
|
|
{ id: "2", text: "7" },
|
|
{ id: "3", text: "8", correct: true },
|
|
{ id: "4", text: "9" }
|
|
]
|
|
}
|
|
];
|
|
|
|
export default questions;
|