const questions = {
body: "", //the text inside the question, e.g. "when did x happen",
id: 0, //just an id used for dynamic rendering keys,
sub_questions: [questions] // an array of sub-questions, which all have the same body, id, sub_questions fields as their parent question structure
}
const questions = {
body: "", //the text inside the question, e.g. "when did x happen",
id: 0, //just an id used for dynamic rendering keys,
sub_questions: [questions] // an array of sub-questions, which all have the same body, id, sub_questions fields as their parent question structure
}