# interactive-supports-focus Elements with an interactive role and interaction handlers (mouse or key press) must be focusable. ## How do I resolve this error? ### Case: I got the error "Elements with the '${role}' interactive role must be tabbable". How can I fix this? This element is a stand-alone control like a button, a link or a form element. A user should be able to reach this element by pressing the tab key on their keyboard. Add the `tabIndex` property to your component. A value of zero indicates that this element can be tabbed to. ```jsx
``` -- or -- Replace the component with one that renders semantic html element like `