Skip to content
Advertisement

State Not Getting Set As Required (React, Hooks)

I am having trouble setting up a state of my component. Kindly check the details as below

Codesandbox link – https://codesandbox.io/s/goofy-glade-z32zp

This is my App Component containing 4 sub components

JavaScript

Checkbox

JavaScript

Radio

JavaScript

Select

JavaScript

NouiSlider

JavaScript

Coming to the problem whenever I try to set state from the radio checkbox or select it does set the state and updates correctly via setAnswerState method that is passed as prop to child. Whenever I try to change the slider the setAnswerState gets values as undefined or null, so the complete state that is set by other child components is lost, I am not able to find the reason behind state lost.

Here is the sample data I used for testing

JavaScript

Advertisement

Answer

Just add [] in useState() as shown below:

JavaScript

And then update the setAnswerState method to:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement