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