| 1175 | function Group(props) { |
| 1176 | let focusManager = useFocusManager(); |
| 1177 | let onMouseDown = e => { |
| 1178 | focusManager.focusNext({from: e.target, tabbable: true}); |
| 1179 | }; |
| 1180 | // eslint-disable-next-line jsx-a11y/no-noninteractive-element-interactions |
| 1181 | return <div {...props} role="group" onMouseDown={onMouseDown} />; |
| 1182 | } |
nothing calls this directly
no test coverage detected