(effect: () => void | (() => void))
| 13 | * @see https://react.dev/learn/you-might-not-need-an-effect |
| 14 | */ |
| 15 | export function useMountEffect(effect: () => void | (() => void)) { |
| 16 | // eslint-disable-next-line react-hooks/exhaustive-deps |
| 17 | useEffect(effect, []); |
| 18 | } |
no outgoing calls
no test coverage detected