I'm using React as the UI layer on WebGL Projects.
See for example: https://github.com/dakom/ball-bounce-frp
My concern is that React/ReactDOM might be doing stuff unexpectedly due to the new improvement to take advantage of idle time.
Does React do anything while ReactDOM.render() and setState() are not being called?
I'm using React as the UI layer on WebGL Projects.
See for example: https://github.com/dakom/ball-bounce-frp
My concern is that React/ReactDOM might be doing stuff unexpectedly due to the new improvement to take advantage of idle time.
Does React do anything while
ReactDOM.render()andsetState()are not being called?