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;