This is an edge case of one of many libraries that attempts to make form handling simpler. It's well known that rapid rerenders of complex components is bad for performance, rendering 83 form elements every time a key is pressed is obviously not going to do well. There are ways to mitigate this (like debouncing the keypress handler), but this issue alone doesn't mean React can't handle large forms.
Use the appropriate tools for the appropriate work. React do provide the alternative to use uncontrolled form fields, which would be more appropriate to this case.
6 comments
[ 6.1 ms ] story [ 30.3 ms ] threadPerhaps the key is that I'm using this: https://github.com/Khan/react-components/blob/master/js/blur...
And yeah, third-party Redux form automation libraries feels pretty far from "React has trouble with large forms."