| 2 | import { useEffect, useRef, useState } from "react"; |
| 3 | |
| 4 | export interface UseFocusWithinOptions { |
| 5 | onFocus?: (event: FocusEvent) => void; |
| 6 | onBlur?: (event: FocusEvent) => void; |
| 7 | } |
| 8 | |
| 9 | function containsRelatedTarget(event: FocusEvent) { |
| 10 | if ( |
nothing calls this directly
no outgoing calls
no test coverage detected