|
|
|
|
|
by philipp-spiess
2657 days ago
|
|
The best approach is to always updated the input synchronously in React (in the same tick when the event is handled). If you do it in another tick, you will always have to handle race conditions. This is a problem for all input elements though, not specific to React or even the Web. |
|