I have a dynamic form. The form grows in no preferred pattern based on user input and I capture all the user inputs from the form as React State.
On form submit I convert the State(JSON) into a YAML file.The JSON structure of this state has a deep tree with multiple data structures involved. As and when I change any of the elements in this deep tree, the form gets updated. But, As the dynamic form grows, the form loading time and reactive time increases. Is there any way to handle this complex states manipulation faster?