(props)
| 17 | import {useFocus} from '../../src/interactions/useFocus'; |
| 18 | |
| 19 | function Example(props) { |
| 20 | let {focusProps} = useFocus(props); |
| 21 | return ( |
| 22 | <div tabIndex={-1} {...focusProps} data-testid="example"> |
| 23 | {props.children} |
| 24 | </div> |
| 25 | ); |
nothing calls this directly
no test coverage detected