Autofocus TextField using React Material-UI

material-ui, reactjs

Solution

You can do this like this: `<TextField autoFocus></TextField>`.

More on this: https://facebook.github.io/react/docs/tags-and-attributes.html#html-attributes.

Problem

I use Material-UI TextField I want to implement an autofocus, I can't find a way to do it from markup by setting `autofocus=true` not programmatically. any help?

Original source

Related problems