https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
I'm getting what I perceive to be a false positive for jsx-a11y/no-noninteractive-element-interactions . This is in fact an interactive element that can be toggled open and closed natively. I'm adding listeners to the element in order to provide fallback support for IE/Edge that do not support it.
<details
onKeyDown={this.handleKey}
onClick={this.toggle}
/>
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
I'm getting what I perceive to be a false positive for
jsx-a11y/no-noninteractive-element-interactions. This is in fact an interactive element that can be toggled open and closed natively. I'm adding listeners to the element in order to provide fallback support for IE/Edge that do not support it.