I am unable to autofocus the input tag rendered in this component. What am I missing here?
class TaskBox extends Component { constructor() { super();
Set an ID to the input and then use .setAttribute('autoFocus', true) to the element when you want it focused
.setAttribute('autoFocus', true)