Chris Bitoy
12/07/2021, 5:08 PMconst data = [
{
id: 1,
title: 'Top 5 Questions',
questions: [
{
// id -> is a composite key between the title id and question id
id: 10,
question:
'This is a question to be answered?',
checked: false,
input_type: 'radio',
answers: [
'Heard of it - never tried it before',
'Tried it once before',
'Buy it regularly',
'Curious to learn more',
],
},
]