I have a progressbar in a render along side other elements with their own state. It appears that when I progmatically update the state of the other sibling elements that the progressbar rereads it's own state. And it appears when it does this it resets the progress bar and it starts counting again from 1. Is there a good strategy for allowing the ProgressBar to retain its state despite the render() being recalled for sibling state? do I have to make the ProgressBar the absolute parent react instance?
I have a progressbar in a render along side other elements with their own state. It appears that when I progmatically update the state of the other sibling elements that the progressbar rereads it's own state. And it appears when it does this it resets the progress bar and it starts counting again from 1. Is there a good strategy for allowing the ProgressBar to retain its state despite the render() being recalled for sibling state? do I have to make the ProgressBar the absolute parent react instance?