I am just writing to text input and in onChange event i call setState, so React rerenders my UI. The problem is that the text input always lose a f
onChange
setState
Turns out I was binding this to the component which was causing it to rerender.
this
I figured I'd post it here in case anyone else had this issue.
I had to change
To
Simple fix since in my case, I didn't actually need this in renderField, but hopefully me posting this will help someone else.
renderField