We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff17a86 commit e05afa5Copy full SHA for e05afa5
src/content/reference/react/hooks.md
@@ -79,6 +79,9 @@ There are two rarely used variations of `useEffect` with differences in timing:
79
* [`useLayoutEffect`](/reference/react/useLayoutEffect) fires before the browser repaints the screen. You can measure layout here.
80
* [`useInsertionEffect`](/reference/react/useInsertionEffect) fires before React makes changes to the DOM. Libraries can insert dynamic CSS here.
81
82
+You can also separate events from Effects:
83
+
84
+- [`useEffectEvent`](/reference/react/useEffectEvent) creates a non-reactive event to fire from any Effect hook.
85
---
86
87
## Performance Hooks {/*performance-hooks*/}
0 commit comments