To be able to ref a Textfield in Material UI you have use inputRef instead of ref e.g below
|
1 2 3 |
<TextField inputRef={input => input && input.focus()} /> |
To be able to ref a Textfield in Material UI you have use inputRef instead of ref e.g below
|
1 2 3 |
<TextField inputRef={input => input && input.focus()} /> |