(props)
| 320 | } |
| 321 | |
| 322 | function Item(props) { |
| 323 | let focusManager = useFocusManager(); |
| 324 | let onClick = () => { |
| 325 | focusManager.focusNext(); |
| 326 | }; |
| 327 | // eslint-disable-next-line jsx-a11y/click-events-have-key-events |
| 328 | return <div {...props} tabIndex={-1} role="button" onClick={onClick} />; |
| 329 | } |
| 330 | |
| 331 | render(<Test />); |
nothing calls this directly
no test coverage detected