I want to create dynamic forms, it has name, desc and multiple sections, each section has multiple questions, each question has multiple options. when I click some buttons, it should create form items dynamically. Sharing any videos or website links would be great.
const [data, setData] = useState([
{
name: "",
desc: "",
sections: [
{
sectionName: "",
sectionDesc: "",
questions: [
{
questionType: "",
questionText: "",
options: [],
answer: "",
},
],
},
],
},
]);
Thank you for your attention.