(props)
| 16 | import userEvent from '@testing-library/user-event'; |
| 17 | |
| 18 | function Example(props) { |
| 19 | let {keyboardProps} = useKeyboard(props); |
| 20 | return ( |
| 21 | <div tabIndex={-1} {...keyboardProps} data-testid="example"> |
| 22 | {props.children} |
| 23 | </div> |
| 24 | ); |
nothing calls this directly
no test coverage detected